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