mac上命令列比windows好用很多,但是git預設按tab鍵是不會自動補全的,很不爽。下面我們按步驟來介紹怎麼做到自動補全。
1.安裝home-brew,相應大裝潢裝過了,如果沒裝,直接去官網看下命令列,copy過來裝下就好了。
2.執行 brew install bash-completion
3.
if [ -f ~/.git-completion.bash ]; then
. ~/.git-completion.bash
fi
把上面這段程式碼copy到 ~/.bash_profile 中,如果沒有,就建立下這個檔案,怎麼建立檔案?touch .bash_profile
4.開啟https://github.com/git/git/bl…,把這個檔案下下來,然後
cp git-completion.bash ~/.git-completion.bash
這個命令意思就是把這個檔案拷貝到 ~/目錄下,並且名字前面加了個點。
5.在~/.bashrc檔案(該目錄下如果沒有,新建一個)中新增下邊的內容
source ~/.git-completion.bash
6.執行
test -f ~/.git-completion.bash && . $_
然後重啟終端,試試按tab鍵吧。git命令就自動補全了。