From 5ed3acfcc430e463aa8585f21b95c785dda89340 Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.uk>
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 d60b90d2..1257718a 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'