Walkthrough Git Commit Push - rkerschbaumer/oom GitHub Wiki

  1. open command prompt
  2. cd path\to\your\repository images/commit0.png
  3. git status images/commit1.png shows that the files you added (folder tasks/Task1) are not yet tracked by git version control images/commit2.png
  4. git add -A will add all new files to version control images/commit3.png
  5. git status now shows you that the files have been added images/commit4.png
  6. git commit -m "add project Task1" will commit all changes to your local repository never forget to specify a commit message (-m) images/commit5.png images/commit6.png
  7. finally, push your local commits to the remote repository at github git push images/commit7.png images/commit8.png
  8. if you look at your repository's github page, you see your changes images/commit9.png