iPod Video White

git 6

[220330] git-flow

git-flow 란 어느 브랜치에서 어떤 역할을 할 지 미리 정한 상호간의 약속이다. 홈페이지에 설치부터 사용법 까지 설명되어 있다. https://danielkummer.github.io/git-flow-cheatsheet/index.ko_KR.html git-flow cheatsheet danielkummer.github.io git-flow 는 merge 기반(Rebase 아님) 윈도우에는 이미 설치되어 있다. 맥에서는 다음 명령어로 설치한다. $ brew install git-flow-avh git-flow를 사용할 디렉토리에 가서 초기화한다. git flow init 각 브랜치는 용도는 다음과 같다. master 사용자가 실제 사용하는 안정적인 버전의 소스들이 여기에 있다. develop 앞으로..

📓 TIL 2022.04.01

[220329] Commit Convention

git clone [리모트 URL] : 복제 git init : git repo 생성 git remote add [리모트alias] [리모트주소] git push -u [remote alias] [로컬브랜치명] git branch -M [새브랜치명] git remote remove mask git remote git remote -v Commit Convention prefix feat: features (기능구현) docs: documentations (문서작석) conf: configurations (환경설정) test: test fix: bug-fix (오류수정) refactor: refactoring (기능향상) ci: Continuous Integration build: Build (빌드에 관한..

📓 TIL 2022.03.29

[220328] CLI /vim / markdown

kernel : 하드웨워와 소프트웨어를 이어주는 시스템소프트웨어 shell : kernel과 사용자를 이어주는 소프트웨어 CLI shell command / : 최상위폴더 .. : 상위폴더 . :현재폴더 cd : 현재위치 이동 mkdit : 디렉토리 생성 pwd : 현재디렉토리를 절대경로로 표시 touch : text 기반의 파일 생성 mv [파일명] [변경할위치명] : 파일의 위치 변경 rm : 파일삭제 cp [복사할파일명] [복사된파일명] : 파일 복사 vim command : 텍스트 편집기 insert mode: press i on normal mode visual mode: press v on normal mode command mode: press shift + ; on normal mode #..

📓 TIL 2022.03.28
반응형