7 lines
136 B
Fish
Executable file
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
|