Last active
December 17, 2015 03:09
-
-
Save mikefowler/5541716 to your computer and use it in GitHub Desktop.
Do you clone a lot of Github repositories from Terminal? If you do, you'll probably dig this.
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
| # USAGE | |
| # | |
| # > clone chriseppstein/compass | |
| # | |
| # Cloning into 'compass'... | |
| githubclone() { | |
| git clone git@github.com:$1.git; | |
| } | |
| alias clone=githubclone |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment