Skip to content

Contributing

Arun Varghese edited this page Feb 6, 2017 · 1 revision

Contributing to PhotoTiles

Step 1: Fork

Fork the project on GitHub and check out your copy locally.

$ git clone git@github.com:username/repo.git
$ cd repo
$ git remote add upstream git://github.com/arvarghese/photo-tiles.git

Step 2: Branch

$ git checkout -b my-branch -t origin/master

Step 3: Commit

$ git add my/changed/files
$ git commit

Step 4: Rebase

$ git fetch upstream
$ git rebase upstream/master

Step 5: Test

$ npm test

Step 6: Push

$ git push origin my-branch

Step 7: Open Pull Request

Go to https://github.com/yourusername/repo and select your branch. Click the 'Pull Request' button and fill out the form. Thats It! Someone will then review your request within a few days.