diff options
author | Michael Kühnel <m.kuehnel@micromata.de> | 2014-11-26 16:20:41 +0100 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2014-12-19 10:05:20 +0100 |
commit | b887f3a6cc237ed11d11e72ff2082c86bc9c0323 (patch) | |
tree | dfe7cb4d2c26d26d105fb709d193df0792c18ec4 | |
parent | 0866ff78fd3b139f59d41a4cb08cd71507f4cb89 (diff) | |
download | dotfiles-b887f3a6cc237ed11d11e72ff2082c86bc9c0323.tar.gz dotfiles-b887f3a6cc237ed11d11e72ff2082c86bc9c0323.tar.bz2 dotfiles-b887f3a6cc237ed11d11e72ff2082c86bc9c0323.zip |
.gitconfig: Prevent showing files whose names contain non-ASCII symbols as unversioned
http://michael-kuehnel.de/git/2014/11/21/git-mac-osx-and-german-umlaute.html
Closes #460.
-rw-r--r-- | .gitconfig | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -89,6 +89,10 @@ # More info: <http://www.git-tower.com/blog/make-git-rebase-safe-on-osx/> trustctime = false + # Prevent showing files whose names contain non-ASCII symbols as unversioned. + # http://michael-kuehnel.de/git/2014/11/21/git-mac-osx-and-german-umlaute.html + precomposeunicode = false + [color] # Use colors in Git commands that are capable of colored output when |