diff options
author | Mathias Bynens <mathias@qiwi.be> | 2012-02-14 18:20:10 +0100 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2012-02-14 18:20:10 +0100 |
commit | b8602fe9242bd1527c69f5c6dad873330283912e (patch) | |
tree | 387b9aa0fcd25acb5fe7b4291fda1eb9f3915df1 | |
parent | c625c47054bc7f67557cdeddddb5397721cda2c2 (diff) | |
download | dotfiles-b8602fe9242bd1527c69f5c6dad873330283912e.tar.gz dotfiles-b8602fe9242bd1527c69f5c6dad873330283912e.tar.bz2 dotfiles-b8602fe9242bd1527c69f5c6dad873330283912e.zip |
.gitconfig: Add `go` and `ca` aliases
-rw-r--r-- | .gitconfig | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -5,6 +5,10 @@ s = status -s # Pull in remote changes for the current repository and all its submodules p = !"git pull; git submodule foreach git pull origin master" + # Commit all changes + ca = commit -a + # Switch to a branch, creating it if necessary + go = checkout -B # Undo a `git push` undopush = push -f origin HEAD^:master |