This commit is contained in:
Shuvalov Anton 2018-04-23 19:55:08 +00:00 committed by GitHub
commit 2b591f7bac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,5 +74,12 @@ git.io() {
curl -i -s https://git.io -F "url=$1" | grep "Location" | cut -f 2 -d " "
}
# clone_gh [AUTHOR/NAME_OF_REPO] [DIRECTORY]
#
# use this when clone repo
clone_gh() { # [AUTHOR/NAME_OF_REPO]
git clone git@github.com:${1}.git ${2}
}
# End Functions #############################################################