Git 設定常用指令alias

設定git常用指令「縮寫」

$ git config --global alias.co checkout
$ git config --global alias.br branch
$ git config --global alias.st status
$ git config --global alias.l "log --oneline --graph"
$ git config --global alias.ls 'log --graph --pretty=format:"%h <%an> %ar %s"'

也可直接到 C:\Users\使用者名稱\.gitconfig ,用記事本開啟直接加入:

[alias]
	co = checkout
	br = branch
	st = status
	l = log --oneline --graph
	ls = log --graph --pretty=format:\"%h <%an> %ar %s\"

以此類推,也可透過此方式,設計自己的快婕縮寫!


人生美好~別浪費腦容量記程式碼 :- ) 

作者:CYL
出處:http://dotblogs.com.tw/cylcode
資料來源都會特別註明,有興趣都可查詢原出處,本站皆經過整理才分享,如有轉載請顯示出處及作者,感謝。