Run the following commands, in sequence, where again the username will be your GitHub username: git init git add README.md git commit -m "My first commit" git remote add origin https://github.com/user-name/CodeDeployGitHubDemo.git git push -u origin master ...
↧