Skip to content
Rifaz Nahiyan edited this page Feb 25, 2019 · 2 revisions

Instructions

  1. Fork this repository (button on the upper right side of the repository page)

  2. Clone your copy of the repository so that you can work on the project from your local work environment. URL for cloning can now be found on your GitHub profile. Command to execute:

    git clone https://github.com/username/patternlab.git

  3. When you have made your desired changes, add the modified file to git, commit the file with a meaningful message that describes the changes made, push the changes to your repo, and then send a pull request to the main repo. Commands that can be used are:

    git add -A

    git commit -m "Now implements/corrects this/that"

    git push

    Then use GitHub website to send a pull request.

Git commands quick and dirty

Whenever you are ready to submit your changes, just do the following

git add -A
git commit -m "Now implements/corrects this/that"
git push

And then send a Pull Request to the main repo.

Branching

Clone this wiki locally