Files
dotfiles/fish/.config/fish/functions/update.fish

9 lines
117 B
Fish

function update
pushd ~/dotfiles
git stash
git pull --rebase
fisher
git stash apply
popd
end