git clone in current directory
git clone git@github.com:whatever folder-name
Here is what the above code is Doing:
1. git clone: This is the command to clone a repository.
2. git@github.com:whatever: This is the URL of the repository you want to clone.
3. folder-name: This is the name of the folder you want to clone the repository into.