11 lines
157 B
Fish
11 lines
157 B
Fish
|
#!/usr/bin/env fish
|
||
|
#
|
||
|
|
||
|
function gitprstp
|
||
|
git stash
|
||
|
git pull --stat --progress --rebase
|
||
|
git submodule update
|
||
|
git stash apply
|
||
|
git push
|
||
|
end
|