summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2024-02-12 13:00:57 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2024-02-12 13:00:57 +0100
commitfe6327071668585806fb899d36aa9c421e33ddbd (patch)
tree2486b805e257fc0891221137ac4f9f40e19bb06f
parent14baa1a801583c4a0007eb74d36dae7ed75b8ed4 (diff)
Add more git aliases
-rwxr-xr-x.config/shell/aliasrc11
1 files changed, 6 insertions, 5 deletions
diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc
index b1da14b..b6d2fe4 100755
--- a/.config/shell/aliasrc
+++ b/.config/shell/aliasrc
@@ -45,14 +45,15 @@ alias \
# git
alias \
- gw="git worktree" \
- gc="git commit" \
ga="git add" \
- gm="git merge" \
+ gb="git branch -a" \
+ gc="git commit" \
+ gcl="git clone" \
gco="git checkout" \
gl="git log" \
- gp="git pull" \
- gb="git branch -a"
+ gm="git merge" \
+ gw="git worktree" \
+ gp="git pull"
# Pushing to multiple git repositories
alias gua="git remote | xargs -L1 git push --all"