8 lines
168 B
Fish
Executable file
8 lines
168 B
Fish
Executable file
#!/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
|