diff options
| author | Mladen Plavsic <mladen.plavsic@gmail.com> | 2024-01-13 18:54:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-13 18:54:56 +0100 |
| commit | cb7ff9fb148d14b19699d9bc35272253b698c3d8 (patch) | |
| tree | 94c3b93734e2a8dc8fdb8745bd80de92d177b7de | |
| parent | 11b0ea33d1c770d69b1418bc78b27a936cc5a17e (diff) | |
| download | zsh-cb7ff9fb148d14b19699d9bc35272253b698c3d8.tar.gz zsh-cb7ff9fb148d14b19699d9bc35272253b698c3d8.tar.bz2 zsh-cb7ff9fb148d14b19699d9bc35272253b698c3d8.zip | |
feat(git): add `gcann!` alias (#12041)
| -rw-r--r-- | plugins/git/README.md | 1 | ||||
| -rw-r--r-- | plugins/git/git.plugin.zsh | 1 |
2 files changed, 2 insertions, 0 deletions
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' |
