From 5ed3acfcc430e463aa8585f21b95c785dda89340 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sun, 6 Oct 2019 02:07:23 +0100 Subject: [PATCH] Add reset alias for `git reset` --- tag-zsh/zsh_profile.d/aliases.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/tag-zsh/zsh_profile.d/aliases.zsh b/tag-zsh/zsh_profile.d/aliases.zsh index d60b90d..1257718 100644 --- a/tag-zsh/zsh_profile.d/aliases.zsh +++ b/tag-zsh/zsh_profile.d/aliases.zsh @@ -41,6 +41,7 @@ alias commit='git commit' alias pull='git pull' alias push='git push' alias rebase='git rebase' +alias reset='git reset' alias hosts="sudo vim /etc/hosts" alias sshconfig='vim ~/.ssh/config'