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 :)
This commit is contained in:
parent
a4bacb8bb9
commit
7131c4840b
1 changed files with 1 additions and 0 deletions
|
@ -44,6 +44,7 @@ alias gbS='git show-branch -a'
|
|||
# Commit (c)
|
||||
alias gc='git commit --verbose'
|
||||
alias gca='git commit --verbose --all'
|
||||
alias gci='git commit --interactive'
|
||||
alias gcm='git commit --message'
|
||||
alias gco='git checkout'
|
||||
alias gcO='git checkout --patch'
|
||||
|
|
Loading…
Add table
Reference in a new issue