Fork the project on GitHub Clone your fork git clone https://github.com/<yourGithubUsername>/<projectname>.git Go to the project directory cd <projectname> Add upstream to original git remote add upstream https://github.com/<originalOwner>/<projectname>.git Create a branch git branch <branchname> Change to the created branch git checkout <branchname> Do your changes Add your changes git add . Commit your changes git commit […]