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