수정사항 확인
git status
수정사항 커밋
git add <수정한 파일명>
git commit -m "커밋 메시지"
git remote -v
git remote add upstream <원격 저장소>
git fetch upstream
git rebase upstream/master
git push origin <브랜치명>
🧐
git branch -r
: 원격 저장소의 branch list 보기git checkout -t <브랜치명>
: 브랜치 가져오기- 유용한 Git Tip : https://github.com/mingrammer/git-tips