fisher/functions/__fisher_url_clone.fish
2016-02-24 10:20:48 +09:00

5 lines
117 B
Fish

function __fisher_url_clone -a url path
set -lx GIT_ASKPASS /bin/echo
git clone -q --depth 1 $url $path
end