[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 앞으로..