git clone with other name code example
Example 1: git clone different name
git clone https://github.com/sferik/sign-in-with-twitter.git signin
Example 2: git clone repo with name
git clone https://github.com/foo/repo_name.git new_directory_name
Example 3: git clone single branch
# clone only the remote primary HEAD (default: origin/master)
git clone <url> --single-branch
# as in:
git clone <url> --branch <branch> --single-branch [<folder>]