git bash 下添加 alias:git
windows 工具:git bash 下添加 aliaswindows
配置文件 \Git\etc\bash.bashrc 便可,在gitbash工具目錄下的 etc目錄下bash
如:工具
讓git log 命令 簡化成 gl,配置以下vagrant
alias gl="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
每次打開git bash時,默認路徑都是C:\Users\alan_zhu,須要用CD命令切換到working directory (cd d:\forGit)中,這比較麻煩。code
方法1,修改git bash的快捷方式中的Start in (開始位置)便可解決這個麻煩。orm
這裏咱們看下 Taget 後面的屬性是 --cd-to-home 這個屬性要去掉,不然下面的「起始位置失效」blog
方法2:使用bat命令直接進入目錄,而後鼠標反鍵,點擊菜單「git bash here」,便可get
只須要在bat文件中寫入:START D:\lmb_vagrant\src\git\admin,直接就能夠進入admin目錄it