diff options
author | Mathias Bynens <mathias@qiwi.be> | 2012-04-23 10:50:16 +0200 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2012-04-23 10:50:16 +0200 |
commit | 71e318cb0cae72cc464ed995cfb3d0631a52e3c0 (patch) | |
tree | 61bd42058171bd3f929c83f2e837b14ed7a0b385 /.gitconfig | |
parent | 5791f663796b81ccbf94cf7f71df8638a9bdaf72 (diff) | |
download | dotfiles-71e318cb0cae72cc464ed995cfb3d0631a52e3c0.tar.gz dotfiles-71e318cb0cae72cc464ed995cfb3d0631a52e3c0.tar.bz2 dotfiles-71e318cb0cae72cc464ed995cfb3d0631a52e3c0.zip |
.gitconfig: Make `git ca` remove deleted files, too
Diffstat (limited to '.gitconfig')
-rw-r--r-- | .gitconfig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ # Clone a repository including all submodules c = clone --recursive # Commit all changes - ca = commit -a + ca = !git add . && git add -u && git commit -a # Switch to a branch, creating it if necessary go = checkout -B # Undo a `git push` |