- Fork it!
- Create your own branch:
git checkout -b my-new-branch. - Make your changes.
- Comment out what changes are made:
// changed ArrayList to array. - Comment out why are they made:
// saves memory.
- Comment out what changes are made:
- Commit your changes:
git commit -am 'added some feature'. - Push to the branch:
git push origin my-new-branch. - Submit a pull request. 😄