diff --git a/plugins/git/README.md b/plugins/git/README.md index cbdfdca0f..be3f85827 100644 --- a/plugins/git/README.md +++ b/plugins/git/README.md @@ -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` | diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index bee9eb67d..f2e472f06 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -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'