fish/functions/clonedown.fish @ 1043163c84c7

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