I\'d like to git clone the contents of a repository I have on GitHub. When I git clone (git@github:me/name.git...) I get a folder called name
git clone
name
You can specify the destination directory as second parameter of the git clone command, so you can do:
git clone .
This will clone the repository directly in the current local directory.