mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-03-04 07:40:12 +08:00
feat(git)!: replace alias gcf
with gcfls
(#12986)
BREAKING CHANGE: `gcl` is replaced with `gcfls`. Signed-off-by: Roeniss Moon <roeniss2@gmail.com>
This commit is contained in:
parent
6e7ac0544e
commit
ee1fe4f0e8
@ -78,7 +78,7 @@ plugins=(... git)
|
|||||||
| `gcs` | `git commit -S` |
|
| `gcs` | `git commit -S` |
|
||||||
| `gcss` | `git commit -S -s` |
|
| `gcss` | `git commit -S -s` |
|
||||||
| `gcssm` | `git commit -S -s -m` |
|
| `gcssm` | `git commit -S -s -m` |
|
||||||
| `gcf` | `git config --list` |
|
| `gcfls` | `git config --list` |
|
||||||
| `gdct` | `git describe --tags $(git rev-list --tags --max-count=1)` |
|
| `gdct` | `git describe --tags $(git rev-list --tags --max-count=1)` |
|
||||||
| `gd` | `git diff` |
|
| `gd` | `git diff` |
|
||||||
| `gdca` | `git diff --cached` |
|
| `gdca` | `git diff --cached` |
|
||||||
@ -236,7 +236,7 @@ receive further support.
|
|||||||
| Alias | Command | Modification |
|
| Alias | Command | Modification |
|
||||||
| :------- | :-------------------------------------------------------- | :-------------------------------------------------------- |
|
| :------- | :-------------------------------------------------------- | :-------------------------------------------------------- |
|
||||||
| `gap` | `git add --patch` | New alias: `gapa`. |
|
| `gap` | `git add --patch` | New alias: `gapa`. |
|
||||||
| `gcl` | `git config --list` | New alias: `gcf`. |
|
| `gcl` | `git config --list` | New alias: ~~`gcf`~~ `gcfls`. |
|
||||||
| `gdc` | `git diff --cached` | New alias: `gdca`. |
|
| `gdc` | `git diff --cached` | New alias: `gdca`. |
|
||||||
| `gdt` | `git difftool` | No replacement. |
|
| `gdt` | `git difftool` | No replacement. |
|
||||||
| `ggpull` | `git pull origin $(current_branch)` | New alias: `ggl`. (`ggpull` still exists for now though.) |
|
| `ggpull` | `git pull origin $(current_branch)` | New alias: `ggl`. (`ggpull` still exists for now though.) |
|
||||||
|
@ -199,7 +199,7 @@ 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'
|
alias gcn='git commit --verbose --no-edit'
|
||||||
alias gcn!='git commit --verbose --no-edit --amend'
|
alias gcn!='git commit --verbose --no-edit --amend'
|
||||||
alias gcf='git config --list'
|
alias gcfls='git config --list'
|
||||||
alias gdct='git describe --tags $(git rev-list --tags --max-count=1)'
|
alias gdct='git describe --tags $(git rev-list --tags --max-count=1)'
|
||||||
alias gd='git diff'
|
alias gd='git diff'
|
||||||
alias gdca='git diff --cached'
|
alias gdca='git diff --cached'
|
||||||
|
Loading…
Reference in New Issue
Block a user