mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-26 01:57:26 +08:00
Compare commits
No commits in common. "8be4789bbbef06fe5eed581dc8c58df51e3cd9fd" and "1c8dee848dad169c9eb1a7b0148842b48a99cad1" have entirely different histories.
8be4789bbb
...
1c8dee848d
@ -70,7 +70,6 @@ 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,7 +194,6 @@ 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'
|
||||||
@ -354,8 +353,6 @@ alias grss='git restore --source'
|
|||||||
alias grst='git restore --staged'
|
alias grst='git restore --staged'
|
||||||
alias gunwip='git rev-list --max-count=1 --format="%s" HEAD | grep -q "\--wip--" && git reset HEAD~1'
|
alias gunwip='git rev-list --max-count=1 --format="%s" HEAD | grep -q "\--wip--" && git reset HEAD~1'
|
||||||
alias grev='git revert'
|
alias grev='git revert'
|
||||||
alias greva='git revert --abort'
|
|
||||||
alias grevc='git revert --continue'
|
|
||||||
alias grm='git rm'
|
alias grm='git rm'
|
||||||
alias grmc='git rm --cached'
|
alias grmc='git rm --cached'
|
||||||
alias gcount='git shortlog --summary --numbered'
|
alias gcount='git shortlog --summary --numbered'
|
||||||
|
|||||||
@ -11,9 +11,8 @@ plugins=(... helm)
|
|||||||
## Aliases
|
## Aliases
|
||||||
|
|
||||||
| Alias | Full command |
|
| Alias | Full command |
|
||||||
| ----- | -------------- |
|
| ----- | ------------ |
|
||||||
| h | helm |
|
| h | helm |
|
||||||
| hin | helm install |
|
| hin | helm install |
|
||||||
| hun | helm uninstall |
|
|
||||||
| hse | helm search |
|
| hse | helm search |
|
||||||
| hup | helm upgrade |
|
| hup | helm upgrade |
|
||||||
|
|||||||
@ -14,6 +14,5 @@ fi
|
|||||||
|
|
||||||
alias h='helm'
|
alias h='helm'
|
||||||
alias hin='helm install'
|
alias hin='helm install'
|
||||||
alias hun='helm uninstall'
|
|
||||||
alias hse='helm search'
|
alias hse='helm search'
|
||||||
alias hup='helm upgrade'
|
alias hup='helm upgrade'
|
||||||
|
|||||||
@ -44,7 +44,7 @@ function pyuserpaths() {
|
|||||||
alias pygrep='grep -nr --include="*.py"'
|
alias pygrep='grep -nr --include="*.py"'
|
||||||
|
|
||||||
# Run proper IPython regarding current virtualenv (if any)
|
# Run proper IPython regarding current virtualenv (if any)
|
||||||
alias ipython='python3 -c "import IPython, sys; sys.exit(IPython.start_ipython())"'
|
alias ipython="python3 -c 'import IPython; IPython.terminal.ipapp.launch_new_instance()'"
|
||||||
|
|
||||||
# Share local directory as a HTTP server
|
# Share local directory as a HTTP server
|
||||||
alias pyserver="python3 -m http.server"
|
alias pyserver="python3 -m http.server"
|
||||||
|
|||||||
@ -26,9 +26,6 @@ plugins=(... terraform)
|
|||||||
| `tfo` | `terraform output` |
|
| `tfo` | `terraform output` |
|
||||||
| `tfp` | `terraform plan` |
|
| `tfp` | `terraform plan` |
|
||||||
| `tfv` | `terraform validate` |
|
| `tfv` | `terraform validate` |
|
||||||
| `tfs` | `terraform state` |
|
|
||||||
| `tfsh`| `terraform show` |
|
|
||||||
|
|
||||||
|
|
||||||
## Prompt function
|
## Prompt function
|
||||||
|
|
||||||
|
|||||||
@ -24,5 +24,3 @@ alias tfi='terraform init'
|
|||||||
alias tfo='terraform output'
|
alias tfo='terraform output'
|
||||||
alias tfp='terraform plan'
|
alias tfp='terraform plan'
|
||||||
alias tfv='terraform validate'
|
alias tfv='terraform validate'
|
||||||
alias tfs='terraform state'
|
|
||||||
alias tfsh='terraform show'
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user