From 94a98389c89178707922fe98afa1aa711ec82722 Mon Sep 17 00:00:00 2001 From: Chris Torstenson Date: Tue, 18 Jun 2013 21:47:30 -0700 Subject: [PATCH] Add an alias for 'git reset --mixed'. Matches the format of the hard and soft reset aliases. --- git-sh-aliases.bash | 1 + 1 file changed, 1 insertion(+) diff --git a/git-sh-aliases.bash b/git-sh-aliases.bash index b3ec8c7..5c7dc0a 100644 --- a/git-sh-aliases.bash +++ b/git-sh-aliases.bash @@ -44,5 +44,6 @@ gitalias ds='git diff --stat' # mnemonic: "diff stat" # git reset gitalias hard='git reset --hard' +gitalias mixed='git reset --mixed' gitalias soft='git reset --soft' gitalias scrap='git checkout HEAD'