Adding an existing project to GitHub
// How to add your local code to a git repository? // 1 - Create a repository on GitHub // 2 - Open a command line on the root folder of your project // 3 - Init a local repository git init // 4 - Stage all the files git add . // 5 - Commit git commit -m "First commit" // 6 - Associate the Git repository git remote add origin [YOUR_REPO_HTTPS_LINK] // 7 - Check remote connection git remote -v // 8 - Push all to the remote repository git push origin master