Ignore git stash standard error.

This commit is contained in:
Jorge Bucaran 2016-02-24 08:45:53 +09:00 committed by Jorge Bucaran
parent 4bee52ddd9
commit e034602bd8

View file

@ -2,9 +2,9 @@ function __fisher_path_update -a path
pushd $path
git checkout master --quiet
git stash --quiet
git stash --quiet ^ /dev/null
git pull --rebase origin master --quiet
git stash apply --quiet
git stash apply --quiet ^ /dev/null
popd
end