fish/functions/clonedown.fish @ d26513c09bd9

Merge.
author Steve Losh <steve@stevelosh.com>
date Wed, 26 Sep 2018 08:45:31 -0400
parents b2ba5708c420
children (none)
function clonedown -d "clone a repo down"
    cd ~/src
    git clone $argv
    cd (echo "$argv" | sed -Ee 's_.*/__')
end