git add . // 변경 사항 추가
git commit -m "commit message 작성" // 변경 사항에 대해 메세지 추가
git branch feature/[기능] // feature/[기능] branch 생성
// 현재 develop branch에 있는 상태에서 git branch [branch명]을 입력하면 [branch명]의 branch가 develop branch 안에 생성되면서 비로소 develop에서 분기가 되는 시점이다.
git checkout feature/[기능] // 현재 branch 장소를 feature/[기능]으로 변경
git push origin feature/[기능] // Github에 feature/[기능] branch가 생성되면서 변경된 파일 업로드