docNo: 20201221_2205 nabiro git status alias git st 무엇을 svn st 명령어와 비슷하게 git st 라는 명령어를 사용하고 싶은데 git 에서는 해당 명령어가 없습니다. 그래서 git alias 명령어를 이용해서 등록 후 git st 명령어를 사용하고자 할 때 사용하는 방법입니다. 어떻게 git config --global alias.st status 위와같은 명령어를 실행하면 됩니다. etc - alias 목록 보기 ## all alias list git config --get-regexp alias ## global alias list git config --global --get-regexp alias ## local alias list git config..