mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-26 01:33:40 +01:00
feat(git): add gcann!
alias (#12041)
This commit is contained in:
parent
11b0ea33d1
commit
cb7ff9fb14
@ -70,6 +70,7 @@ plugins=(... git)
|
|||||||
| `gca!` | `git commit --verbose --all --amend` |
|
| `gca!` | `git commit --verbose --all --amend` |
|
||||||
| `gcan!` | `git commit --verbose --all --no-edit --amend` |
|
| `gcan!` | `git commit --verbose --all --no-edit --amend` |
|
||||||
| `gcans!` | `git commit --verbose --all --signoff --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` |
|
| `gc!` | `git commit --verbose --amend` |
|
||||||
| `gcn!` | `git commit --verbose --no-edit --amend` |
|
| `gcn!` | `git commit --verbose --no-edit --amend` |
|
||||||
| `gcs` | `git commit -S` |
|
| `gcs` | `git commit -S` |
|
||||||
|
@ -194,6 +194,7 @@ alias gca='git commit --verbose --all'
|
|||||||
alias gca!='git commit --verbose --all --amend'
|
alias gca!='git commit --verbose --all --amend'
|
||||||
alias gcan!='git commit --verbose --all --no-edit --amend'
|
alias gcan!='git commit --verbose --all --no-edit --amend'
|
||||||
alias gcans!='git commit --verbose --all --signoff --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 gc!='git commit --verbose --amend'
|
||||||
alias gcn!='git commit --verbose --no-edit --amend'
|
alias gcn!='git commit --verbose --no-edit --amend'
|
||||||
alias gcf='git config --list'
|
alias gcf='git config --list'
|
||||||
|
Loading…
Reference in New Issue
Block a user