summary refs log tree commit diff
path: root/home
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-10-27 13:04:29 -0400
committerJune McEnroe <june@causal.agency>2020-10-27 13:04:29 -0400
commitdfccdfb5a4abcb927c0810b290ed48e617e6fe12 (patch)
treed0848351e247ea3c4aae032064a1fab1fe60130d /home
parentAllow cd host: to cd to same path over ssh (diff)
downloadsrc-dfccdfb5a4abcb927c0810b290ed48e617e6fe12.tar.gz
src-dfccdfb5a4abcb927c0810b290ed48e617e6fe12.zip
Switch gr alias back to git rebase
I always type out git reset and sometimes still expect gr to be
rebase... Never got used to it I guess.
Diffstat (limited to 'home')
-rw-r--r--home/.shrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/home/.shrc b/home/.shrc
index 3013ac79..78d9e9f3 100644
--- a/home/.shrc
+++ b/home/.shrc
@@ -10,9 +10,9 @@ alias bc='bc -l'
 alias gs='git status --short --branch || ls' gd='git diff'
 alias gsh='git show' gl='git log --graph --pretty=log'
 alias gco='git checkout' gb='git branch' gm='git merge' gst='git stash'
-alias ga='git add' gr='git reset' gmv='git mv' grm='git rm'
+alias ga='git add' gmv='git mv' grm='git rm'
 alias gc='git commit' gca='gc --amend' gt='git tag'
-alias gp='git push' gu='git pull' gf='git fetch'
+alias gp='git push' gu='git pull' gf='git fetch' gr='git rebase'
 alias rand='openssl rand -base64 33'
 alias private='eval "$(gpg -d ~/.private)"'
 type doas >/dev/null 2>&1 && alias sudo=doas