Created
October 22, 2013 15:22
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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