Skip to content

Commit

Permalink
feat(git): add gcann! alias (ohmyzsh#12041)
Browse files Browse the repository at this point in the history
  • Loading branch information
mladenplavsic authored Jan 13, 2024
1 parent 11b0ea3 commit cb7ff9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions plugins/git/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ plugins=(... git)
| `gca!` | `git commit --verbose --all --amend` |
| `gcan!` | `git commit --verbose --all --no-edit --amend` |
| `gcans!` | `git commit --verbose --all --signoff --no-edit --amend` |
| `gcann!` | `git commit --verbose --all --date=now --no-edit --amend` |
| `gc!` | `git commit --verbose --amend` |
| `gcn!` | `git commit --verbose --no-edit --amend` |
| `gcs` | `git commit -S` |
Expand Down
1 change: 1 addition & 0 deletions plugins/git/git.plugin.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ alias gca='git commit --verbose --all'
alias gca!='git commit --verbose --all --amend'
alias gcan!='git commit --verbose --all --no-edit --amend'
alias gcans!='git commit --verbose --all --signoff --no-edit --amend'
alias gcann!='git commit --verbose --all --date=now --no-edit --amend'
alias gc!='git commit --verbose --amend'
alias gcn!='git commit --verbose --no-edit --amend'
alias gcf='git config --list'
Expand Down

0 comments on commit cb7ff9f

Please sign in to comment.