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