Skip to content

Instantly share code, notes, and snippets.

@psyomn
Created October 22, 2013 15:22
Show Gist options
  • Select an option

  • Save psyomn/7102617 to your computer and use it in GitHub Desktop.

Select an option

Save psyomn/7102617 to your computer and use it in GitHub Desktop.
Quickhand to download things from github if you remember the username of the guy and her repo.
#!/usr/bin/env bash
if [ -z $1 ] || [ -z $2 ]
then
echo "usage: ghclone username reponame";
exit;
fi
git clone https://github.com/$1/$2.git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment