1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-01-23 01:17:24 +08:00

Compare commits

..

No commits in common. "cc73a929f637899407d7a17648f89c63b71cc1ff" and "8a68bf67720a6a5442ae947d10d74b1dd3558d91" have entirely different histories.

4 changed files with 1 additions and 5 deletions

3
.gitignore vendored
View File

@ -8,5 +8,4 @@ log/
.DS_Store
# editor configs
.vscode
.idea
.vscode

View File

@ -10,7 +10,6 @@ if [[ -z "${CLOUDSDK_HOME}" ]]; then
"/opt/homebrew/Caskroom/google-cloud-sdk/latest/google-cloud-sdk"
"/usr/share/google-cloud-sdk"
"/snap/google-cloud-sdk/current"
"/snap/google-cloud-cli/current"
"/usr/lib/google-cloud-sdk"
"/usr/lib64/google-cloud-sdk"
"/opt/google-cloud-sdk"

View File

@ -124,7 +124,6 @@ plugins=(... git)
| gpf | git push --force-with-lease (git version < 2.30) |
| gpf! | git push --force |
| gpoat | git push origin --all && git push origin --tags |
| gpod | git push origin --delete |
| gpr | git pull --rebase |
| gpu | git push upstream |
| gpv | git push --verbose |

View File

@ -242,7 +242,6 @@ is-at-least 2.30 "$git_version" \
|| alias gpf='git push --force-with-lease'
alias gpf!='git push --force'
alias gpoat='git push origin --all && git push origin --tags'
alias gpod='git push origin --delete'
alias gpr='git pull --rebase'
alias gpu='git push upstream'
alias gpv='git push --verbose'