Clone a remote repo to an existing local repo
Open Git CMD / Bash
> cd my/folder/
or Hold SHIFT, right click the folder you're in, then select Open command window here.
> git init
Identify if the current elements on the directory are needed or not and add them to the .gitignore file.
ren gitignore.txt .gitignore
When ready create the first commit on the server
> git add .
> git commit -m "my first commit"
> git remote add origin https://github.com/sarpay/RoboAir.git
> git pull origin master