Walkthrough Git Commit Push - rkerschbaumer/oom GitHub Wiki
- open command prompt
cd path\to\your\repositoryimages/commit0.pnggit statusimages/commit1.png shows that the files you added (folder tasks/Task1) are not yet tracked by git version control images/commit2.pnggit add -Awill add all new files to version control images/commit3.pnggit statusnow shows you that the files have been added images/commit4.pnggit 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- finally, push your local commits to the remote repository at github
git pushimages/commit7.png images/commit8.png - if you look at your repository's github page, you see your changes images/commit9.png