diff options
author | Mathias Bynens <mathias@qiwi.be> | 2012-06-05 12:36:48 +0200 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2012-06-05 12:36:48 +0200 |
commit | 9e28a886b65974ff692b90d383e3f0635c34991c (patch) | |
tree | 3f796782a2a6a8fde19a7472baf3dc37994a0d60 | |
parent | 15d4c9583d66be40a497706134b637e8c1f10ae6 (diff) | |
download | dotfiles-9e28a886b65974ff692b90d383e3f0635c34991c.tar.gz dotfiles-9e28a886b65974ff692b90d383e3f0635c34991c.tar.bz2 dotfiles-9e28a886b65974ff692b90d383e3f0635c34991c.zip |
.gitconfig: Tweak `ca` alias
Thanks to @necolas! https://github.com/mathiasbynens/dotfiles/commit/15d4c9583d66be40a497706134b637e8c1f10ae6#commitcomment-1416521
-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 = !git add . && git add -u && git commit -av + ca = !git add -A && git commit -av # Switch to a branch, creating it if necessary go = checkout -B # Show verbose output about tags, branches or remotes |