dotfiles/fish/functions/ggu.fish
2022-11-27 14:20:25 +08:00

3 lines
143 B
Fish

function ggu -d "Rebase the current branch on top of the upstream branch after fetching"
git pull --rebase origin (__git.current_branch)
end