homes/common/.config/fish/functions/gitpull.fish

7 lines
136 B
Fish
Executable file

#!/usr/bin/env fish
#
function gitpull -d "git pull and update submodules"
git pull --stat --progress
git submodule update
end