9 lines
121 B
Fish
9 lines
121 B
Fish
|
#!/usr/bin/env fish
|
||
|
#
|
||
|
|
||
|
function gitprp
|
||
|
git pull --stat --progress --rebase
|
||
|
git submodule update
|
||
|
git push
|
||
|
end
|