Skip to content

Commit

Permalink
[Fix #349] Display diff when committing
Browse files Browse the repository at this point in the history
  • Loading branch information
sorin-ionescu committed Jan 12, 2013
1 parent bb6b590 commit 14da495
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/git/alias.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ alias gbs='git show-branch'
alias gbS='git show-branch -a'

# Commit (c)
alias gc='git commit'
alias gca='git commit --all'
alias gc='git commit --verbose'
alias gca='git commit --verbose --all'
alias gcm='git commit --message'
alias gco='git checkout'
alias gcO='git checkout --patch'
alias gcf='git commit --amend --reuse-message HEAD'
alias gcF='git commit --amend'
alias gcF='git commit --verbose --amend'
alias gcp='git cherry-pick --ff'
alias gcP='git cherry-pick --no-commit'
alias gcr='git revert'
Expand Down

0 comments on commit 14da495

Please sign in to comment.