diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-02-21 23:56:15 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-02-21 23:56:15 +0100 |
commit | eb6c1d06f8a74b3fd3d903781f511936c49d07de (patch) | |
tree | 395cc121c272fff15b4cddbfe1818f0ad2acdedf /.config | |
parent | b76a7b430e17b3990dcb84b890e4977fcafa1c89 (diff) |
Add alias for git push and pull
Diffstat (limited to '.config')
-rwxr-xr-x | .config/shell/aliasrc | 3 |
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" |