Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 737 Bytes

CONTRIBUTING.md

File metadata and controls

24 lines (21 loc) · 737 Bytes

Contributing

Create a new branch from an up to date master branch on your fork.

  1. Fork the react-union repository on Github
  2. Clone your fork to your local machine
git clone [email protected]:<yourname>/react-union.git
  1. Create a branch
git checkout -b my-topic-branch`
  1. Make your changes, lint, test, then push to to GitHub with git push origin my-topic-branch.
    • Make one or more atomic commits. Use interactive rebase or amend if necessary.
  2. Visit GitHub and make your pull request.

For synchronizing master branch between fork and lundegaard repository:

git remote add upstream [email protected]:lundegaard/react-union.git
git checkout master
git fetch upstream
git merge upstream/master