초기화 git init 내용 commit할 문서 추가하기 git add index.html 커밋 git commit -m "feat(My project refactoring)" -ammend 상태 확인 git status commit 로그 확인 git log --oneline 새로운 branch 생성하기 git branch newBranchName branch 목록 보기 git branch -a branch delete 브랜치 삭제하기 git branch -d branchname branch 이동하기 convert branch git checkout branchName pull git pull pull 실행 후 fatal: refusing to merge unrelated histories가 뜬다면 gi..