feature: add git add -p to git module

This commit is contained in:
Andrea Ceccarelli 2018-02-03 09:42:02 +01:00
parent 064b75c059
commit 5f4f708de4
2 changed files with 8 additions and 0 deletions

View file

@ -259,6 +259,10 @@ zstyle ':prezto:module:git:alias' skip 'yes'
- `gRs` displays information about a given remote.
- `gRb` opens a remote on [GitHub][3] in the default browser.
### Stage
- `gap` stage changes interactively
### Stash
- `gs` stashes the changes of the dirty working directory.

View file

@ -238,6 +238,10 @@ if ! zstyle -t ':prezto:module:git:alias' skip 'yes'; then
alias gsS='git stash save --patch --no-keep-index'
alias gsw='git stash save --include-untracked --keep-index'
# Stage (a)
alias gap='git add -p'
# Submodule (S)
alias gS='git submodule'
alias gSa='git submodule add'