I have a project on github that I have been working on before. However, I wiped out my computer and I am wondering which git command should I invoke under my username to checko
First, you'll need to tell git about yourself. Get your username and token together from your settings page.
Then run:
git config --global github.user YOUR_USERNAME
git config --global github.token YOURTOKEN
You will need to generate a new key if you don't have a back-up of your key.
Then you should be able to run:
git clone git@github.com:YOUR_USERNAME/YOUR_PROJECT.git