Skip to content

Instantly share code, notes, and snippets.

@ktravis
Created March 30, 2014 01:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ktravis/9865793 to your computer and use it in GitHub Desktop.
Save ktravis/9865793 to your computer and use it in GitHub Desktop.
gitc for the fish sell
function gitc
if set -q argv[2] # two args
git clone https://github.com/$argv[1]/$argv[2]
else # one arg
git clone https://github.com/$argv[1]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment