alias
git alias 기능을 통해 축약어 형태로 git command 를 사용할 수 있다
설정
$ git config --global alias.co checkout
$ git config --global alias.br branch
$ git config --global alias.ci commit
$ git config --global alias.st status
Shell
복사
사용
$ git co BRANCH
Switched to branch 'BRANCH'
$ git br
* master
Shell
복사
기타
•
직접 gitconfig 파일을 수정해서 설정할 수 있다
•
내가 주로 사용하는 alias 들은 아래와 같다
$ vim ~/.gitconfig
[alias]
co = checkout
br = branch
ci = commit
st = status
unstage = reset HEAD --
last = log -1 HEAD -p
hide = update-index --assume-unchanged
unhide = update-index --no-assume-unchanged
$ git unstage FILE_NAME
$ git last
Bash
복사
참고
•
https://git-scm.com/book/ko/v2/Git%EC%9D%98-%EA%B8%B0%EC%B4%88-Git-Alias