Skip to content

Commit

Permalink
git: Use stash pop instead of apply
Browse files Browse the repository at this point in the history
  • Loading branch information
brauliobo committed Jan 27, 2016
1 parent 37d44ff commit 622eebd
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions configs/.gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@

[core]
mergeoptions = --no-edit
#pager = less -FiR # -F is necessary but has problems with tmux and regular shells
pager = most
pager = less -FiR # -F is necessary but has problems with tmux and regular shells
#pager = most
excludesfile = /home/braulio/.gitignore
#pager = vimpager
#pager = more -p
Expand Down Expand Up @@ -135,7 +135,7 @@
pl = pull
plo = pull origin
plom = pull origin master
plr = pull --rebase
plr = !git sh && git pull --rebase && git shp

st = status
sttc = !git status | grep typechange | awk '{print $2}'
Expand Down Expand Up @@ -182,10 +182,11 @@
ra = !git r --all

sh = stash
sha = stash apply
shp = stash pop
shl = stash list
shd = stash drop
shc = stash clear
sha = stash apply

chp = cherry-pick
chpc = cherry-pick --continue
Expand Down

0 comments on commit 622eebd

Please sign in to comment.