주로 사용하는 Git 명령어 목록입니다.
$ git status
$ git log
$ git log --graph --all --oneline
$ git checkout -b {새로운 브랜치의 이름} {해당 Commit의 hash}
$ git switch -c {새로운 브랜치의 이름} {해당 Commit의 hash}
$ git checkout -t origin/{브랜치명}
$ git add .
$ git add {추가할 항목의 파일경로}
$ git commit
$ git commit --amend
$ git reset --soft HEAD^
$ git reset --mixed HEAD^ // 기본 옵션
$ git reset HEAD^ // 위와 동일
$ git reset HEAD~2 // 마지막 2개의 commit을 취소
$ git reset --hard HEAD^
$git branch -vv
$ git fetch --prune
$ git fetch
$ git reset HEAD~1
$ git stash list
$ git stash push
$ git stash push -m "message"
$ git stash push -u
$ git stash apply ${index}
$ git stash pop ${index}
$ git stash drop ${index}
$ git branch -m 새로운 브랜치 이름
$ git remote update
$ git branch --list
$ git branch -r
$ git branch -a
$ git log
$ git log --graph -all --oneline
$ git status