2017-10-20 48 views

回答

0

這不像聽起來那麼簡單。

如果已設置:

excludesFile = ~/.config/git/ignore 

然後你的manually expanding the ~ character的問題,這是不那麼容易,因爲你的希望。

以下別名會做的魔力爲你:

edit-global-excludes = !"bash -c 'f=$(git config core.excludesFile); \"$EDITOR\" \"${f/#\\~/$HOME}\"' #" 

這相當於在shell提示下鍵入:

$ bash -c 'f=$(git config core.excludesFile); "$EDITOR" "${f/#\~/$HOME}"' #