#!/usr/bin/env fish
#
function gitprstp -d "git stash, pull, rebase, update modules, apply stash and push"
git stash
git pull --stat --progress --rebase
git submodule update
git stash apply
git push
end