10 lines
224 B
Fish
Executable file
10 lines
224 B
Fish
Executable file
#!/usr/bin/env fish
|
|
#
|
|
|
|
function gitprstp -d "git stash, pull, rebase, update modules, apply stash and push"
|
|
git stash
|
|
git pull --stat --progress --rebase
|
|
git submodule update
|
|
git stash apply
|
|
git push
|
|
end
|