dup: Add normal git pull when not -s

This commit is contained in:
Adam Goldsmith 2019-01-16 00:14:55 -05:00
parent 2016ea1b2d
commit 769da953ff
1 changed files with 2 additions and 0 deletions

2
dup
View File

@ -29,6 +29,8 @@ function do_pull() {
git pull --rebase
git push
[ -n "$do_stash" ] && git stash pop || true
else
git pull
fi
}