|
@@ -89,7 +89,8 @@ plugins=(... git)
|
|
| ggsup | git branch --set-upstream-to=origin/$(git_current_branch) |
|
|
| ggsup | git branch --set-upstream-to=origin/$(git_current_branch) |
|
|
| ggu | git pull --rebase origin $(current_branch) |
|
|
| ggu | git pull --rebase origin $(current_branch) |
|
|
| gpsup | git push --set-upstream origin $(git_current_branch) |
|
|
| gpsup | git push --set-upstream origin $(git_current_branch) |
|
|
-| gpsupf | git push --set-upstream origin $(git_current_branch) --force-with-lease |
|
|
|
|
|
|
+| gpsupf | git push --set-upstream origin $(git_current_branch) --force-with-lease --force-if-includes (git version >= 2.30) |
|
|
|
|
+| gpsupf | git push --set-upstream origin $(git_current_branch) --force-with-lease (git version < 2.30) |
|
|
| ghh | git help |
|
|
| ghh | git help |
|
|
| gignore | git update-index --assume-unchanged |
|
|
| gignore | git update-index --assume-unchanged |
|
|
| gignored | git ls-files -v \| grep "^[[:lower:]]" |
|
|
| gignored | git ls-files -v \| grep "^[[:lower:]]" |
|
|
@@ -120,6 +121,8 @@ plugins=(... git)
|
|
| gp | git push |
|
|
| gp | git push |
|
|
| gpd | git push --dry-run |
|
|
| gpd | git push --dry-run |
|
|
| gpf | git push --force-with-lease |
|
|
| 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 |
|
|
| gpf! | git push --force |
|
|
| gpoat | git push origin --all && git push origin --tags |
|
|
| gpoat | git push origin --all && git push origin --tags |
|
|
| gpr | git pull --rebase |
|
|
| gpr | git pull --rebase |
|