Assuming you have already cloned a repository, the best place to start is with: This will show the current state of the files including the branch you are on and any untracked changes. If you’ve come back to a project after a few days off, this will remind you where you are (which branch) and …
Tag Archives: git
The simplest way to create a pull-request and contribute code to open source projects on Github
Make a github account Go to the project you want to contribute to Press the “fork” button Check out your forked copy of the project Create a new branch and check it out (change “branch-name” to something descriptive of your work) Make your changes Add each new or modified file to your commit : Commit …