7 lines
147 B
Fish
Executable file
7 lines
147 B
Fish
Executable file
#!/usr/bin/env fish
|
|
#
|
|
|
|
function gitpr -d "git pull rebase and update modules"
|
|
git pull --stat --progress --rebase
|
|
git submodule update
|
|
end
|