1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-01-25 01:47:25 +08:00

Compare commits

..

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

4 changed files with 1 additions and 5 deletions

1
.gitignore vendored
View File

@ -9,4 +9,3 @@ log/
# editor configs # editor configs
.vscode .vscode
.idea

View File

@ -10,7 +10,6 @@ if [[ -z "${CLOUDSDK_HOME}" ]]; then
"/opt/homebrew/Caskroom/google-cloud-sdk/latest/google-cloud-sdk" "/opt/homebrew/Caskroom/google-cloud-sdk/latest/google-cloud-sdk"
"/usr/share/google-cloud-sdk" "/usr/share/google-cloud-sdk"
"/snap/google-cloud-sdk/current" "/snap/google-cloud-sdk/current"
"/snap/google-cloud-cli/current"
"/usr/lib/google-cloud-sdk" "/usr/lib/google-cloud-sdk"
"/usr/lib64/google-cloud-sdk" "/usr/lib64/google-cloud-sdk"
"/opt/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-with-lease (git version < 2.30) |
| gpf! | git push --force | | gpf! | git push --force |
| gpoat | git push origin --all && git push origin --tags | | gpoat | git push origin --all && git push origin --tags |
| gpod | git push origin --delete |
| gpr | git pull --rebase | | gpr | git pull --rebase |
| gpu | git push upstream | | gpu | git push upstream |
| gpv | git push --verbose | | 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-with-lease'
alias gpf!='git push --force' alias gpf!='git push --force'
alias gpoat='git push origin --all && git push origin --tags' alias gpoat='git push origin --all && git push origin --tags'
alias gpod='git push origin --delete'
alias gpr='git pull --rebase' alias gpr='git pull --rebase'
alias gpu='git push upstream' alias gpu='git push upstream'
alias gpv='git push --verbose' alias gpv='git push --verbose'