oh-my-fish/pkg/omf/util/omf_util_sync.fish
2015-08-27 00:20:13 +09:00

8 lines
171 B
Fish

function omf_util_sync -a remote
set -l repo $remote
set -q argv[1]; and set repo $argv[1]
git fetch origin master
git reset --hard FETCH_HEAD
git clean -df
end