Github Flow 진행
git push origin 브랜치_이름 -f
-f 옵션 : 리젝되어도 밀어넣을 수 있다.(강제로 push)
git branch -D 브랜치_이름
-D 옵션 : 브랜치 삭제
rm -rf *
폴더에 있는 모든 내용을 지운다.
git commit --amend
--amend 옵션 : 직전에 실행한 커밋 수정
토스트 UI
https://github.com/nhn/tui.editor/tree/master/docs/ko
코드펜에 토스트 UI 에디터 생성
html
<script src="https://uicdn.toast.com/editor/latest/toastui-editor-all.min.js"></script>
<link rel="stylesheet" href="https://uicdn.toast.com/editor/latest/toastui-editor.min.css" />
<div id="editor"></div>
js
const Editor = toastui.Editor;
const editor = new Editor({
el: document.querySelector('#editor')
});
코드펜에 토스트 UI 뷰어 생성
html
<script src="https://uicdn.toast.com/editor/latest/toastui-editor-viewer.js"></script>
<link rel="stylesheet" href="https://uicdn.toast.com/editor/latest/toastui-editor-viewer.min.css" />
<div id="viewer"></div>
js
const Viewer = toastui.Editor;
const viewer = new Viewer({
el: document.querySelector("#viewer"),
initialValue : "# hello"
});
'프로젝트 & TIL > 일별 공부 기록 (백엔드 스쿨)' 카테고리의 다른 글
12일차 - DB 쿼리(1) (0) | 2023.03.08 |
---|---|
11일차 - 토스트 UI 에디터(폰트, 플러그인)와 깃허브 블로그, DB (0) | 2023.03.07 |
9일차 - 각 클래스의 역할과 Git rebase, Git Flow & Github Flow (0) | 2023.03.05 |
8일차 - json 파일 생성과 읽기 & 자바 기초 (0) | 2023.03.02 |
7일차 - 깃 병합과 자바(컬렉션 프레임워크(리스트, 맵)) (0) | 2023.02.28 |