diff options
author | Mathias Bynens <mathias@qiwi.be> | 2013-11-26 10:04:14 +0100 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2013-11-26 10:04:14 +0100 |
commit | b36561c2df2b9f92f237fdfdd0e1697c7239826e (patch) | |
tree | 487287451448b71af0c222cb7443e972a0ee5701 /.gitconfig | |
parent | 5a344c84269c3bcbecb9e3c64c211663b6f445f6 (diff) | |
download | dotfiles-b36561c2df2b9f92f237fdfdd0e1697c7239826e.tar.gz dotfiles-b36561c2df2b9f92f237fdfdd0e1697c7239826e.tar.bz2 dotfiles-b36561c2df2b9f92f237fdfdd0e1697c7239826e.zip |
.gitconfig: Make `git rebase` safer on OS X
See <http://www.git-tower.com/blog/make-git-rebase-safe-on-osx/>.
Closes #291.
Diffstat (limited to '.gitconfig')
-rw-r--r-- | .gitconfig | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -38,6 +38,9 @@ # [default] space-before-tab: looks for spaces before tabs at the beginning of # a line whitespace = space-before-tab,indent-with-non-tab,trailing-space + # Make `git rebase` safer on OS X + # More info: <http://www.git-tower.com/blog/make-git-rebase-safe-on-osx/> + trustctime = false [color] # Use colors in Git commands that are capable of colored output when |