1
1
Fork 0

Add flpu, a combination of fossil pull & up

This commit is contained in:
Jonathan Schleifer 2021-01-01 22:00:05 +00:00
parent ce676b8aba
commit 74e47e208a
2 changed files with 7 additions and 0 deletions

3
fish/functions/flpu.fish Normal file
View file

@ -0,0 +1,3 @@
function flpu --wraps='fossil update'
fossil pull && fossil update $argv
end

4
zshrc
View file

@ -251,6 +251,10 @@ if __has_command fossil; then
fossil diff -N "$@" | colordiff | less -FRX
}
flpu() {
fossil pull && fossil update "$@"
}
flgrep() {
local ret=1
fossil changes --all . | sed 's/^.* //' | while read file; do