summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2024-02-21 23:56:15 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2024-02-21 23:56:15 +0100
commiteb6c1d06f8a74b3fd3d903781f511936c49d07de (patch)
tree395cc121c272fff15b4cddbfe1818f0ad2acdedf
parentb76a7b430e17b3990dcb84b890e4977fcafa1c89 (diff)
Add alias for git push and pull
-rwxr-xr-x.config/shell/aliasrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc
index b6d2fe4..5026e44 100755
--- a/.config/shell/aliasrc
+++ b/.config/shell/aliasrc
@@ -53,7 +53,8 @@ alias \
gl="git log" \
gm="git merge" \
gw="git worktree" \
- gp="git pull"
+ gpl="git pull" \
+ gph="git push"
# Pushing to multiple git repositories
alias gua="git remote | xargs -L1 git push --all"