Ignore git stash standard error.

This commit is contained in:
Jorge Bucaran 2016-02-24 08:45:53 +09:00
parent 903fdad734
commit aae66ae0d8
No known key found for this signature in database
GPG key ID: E54BA3C0E646DB30

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