1
0
Fork 0

Add interactive commit alias

git commit --interactive is incredibly useful for workflows where you make a lot of related changes at once but wish to flexibly commit portions independently, as well as general commit workflow activities. I've been using this alias for years and would like to stop rebasing it when I update prezto :)
pull/493/head
Evan Callicoat 11 years ago
parent a4bacb8bb9
commit 7131c4840b

@ -44,6 +44,7 @@ alias gbS='git show-branch -a'
# Commit (c) # Commit (c)
alias gc='git commit --verbose' alias gc='git commit --verbose'
alias gca='git commit --verbose --all' alias gca='git commit --verbose --all'
alias gci='git commit --interactive'
alias gcm='git commit --message' alias gcm='git commit --message'
alias gco='git checkout' alias gco='git checkout'
alias gcO='git checkout --patch' alias gcO='git checkout --patch'

Loading…
Cancel
Save