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

Compare commits

..

No commits in common. "45571bfa03934359a49f7043cbcf50abccdf448c" and "379fe0fe131cff7a480f7975b32b0ea6fc7c2370" have entirely different histories.

2 changed files with 2 additions and 1 deletions

View File

@ -120,6 +120,7 @@ plugins=(... git)
| gma | git merge --abort |
| gp | git push |
| gpd | git push --dry-run |
| gpf | git push --force-with-lease |
| gpf | git push --force-with-lease --force-if-includes (git version >= 2.30) |
| gpf | git push --force-with-lease (git version < 2.30) |
| gpf! | git push --force |

View File

@ -104,7 +104,7 @@ compdef _git gccd=git-clone
alias gcl='git clone --recurse-submodules'
alias gclean='git clean --interactive -d'
alias gpristine='git reset --hard && git clean --force -dfx'
alias gpristine='git reset --hard && git clean --force -dx'
alias gcm='git checkout $(git_main_branch)'
alias gcd='git checkout $(git_develop_branch)'
alias gcmsg='git commit --message'