fish/functions/clonedown.fish @ 11ac6a11cf19

Merge.
author Steve Losh <steve@stevelosh.com>
date Sun, 08 Oct 2017 15:33:39 -0400
parents b2ba5708c420
children (none)
function clonedown -d "clone a repo down"
    cd ~/src
    git clone $argv
    cd (echo "$argv" | sed -Ee 's_.*/__')
end