[Fix #360] Set alias giR to reset the index interactively

This commit is contained in:
Sorin Ionescu 2013-01-12 11:25:06 -05:00
parent 1d0b0e2e9b
commit bb6b590919
2 changed files with 3 additions and 3 deletions

View File

@ -98,8 +98,8 @@ Aliases
- `giu` adds file contents to the index (updates only known files).
- `gid` displays changes between the index and a named commit (diff).
- `giD` displays changes between the index and a named commit (word diff).
- `gir` resets current HEAD to the specified state.
- `giR` resets current index to the specified state.
- `gir` resets the current HEAD to the specified state.
- `giR` resets the current index interactively.
- `gix` removes files/directories from the index (recursively).
- `giX` removes files/directories from the index (recursively and forced).

View File

@ -86,7 +86,7 @@ alias giu='git add --update'
alias gid='git diff --no-ext-diff --cached'
alias giD='git diff --no-ext-diff --cached --word-diff'
alias gir='git reset'
alias giR='git reset --keep'
alias giR='git reset --patch'
alias gix='git rm -r --cached'
alias giX='git rm -rf --cached'