diff options
author | self <george@gabbott.dev> | 2023-02-25 22:33:38 +0000 |
---|---|---|
committer | self <george@gabbott.dev> | 2023-02-25 22:33:38 +0000 |
commit | 62e2239a28045b8216c0fd6995bf5326405b5603 (patch) | |
tree | 60c2b570253f3f5a2071f8eb26f30d9afdfd5efa | |
parent | df6729754d8d66f330996f2a2b3ffe3c5666f370 (diff) |
grm, gmv, and gpa now uses git-push-all
-rw-r--r-- | zsh/.zshrc-git | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/zsh/.zshrc-git b/zsh/.zshrc-git index 2b7e2f6..5777921 100644 --- a/zsh/.zshrc-git +++ b/zsh/.zshrc-git @@ -25,11 +25,13 @@ git-update-all() { # Update all - recursively iterates through dir and runs git # Git aliases abbrev-alias gb="git branch" +abbrev-alias grm="git rm" +abbrev-alias gmv="git mv" abbrev-alias gco="git checkout" abbrev-alias gcom="git checkout master" abbrev-alias gbd="git branch -d" abbrev-alias gp="git push" -abbrev-alias gpa="git push origin && git push github && git push gitlab" +abbrev-alias gpa="git-push-all" abbrev-alias gpl="git pull" abbrev-alias gs="git status" abbrev-alias ga="git add" |