Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 735 Bytes

CONTRIBUTING.md

File metadata and controls

32 lines (24 loc) · 735 Bytes

Contributing

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

  1. Fork the lundium repository on Github
  2. Clone your fork to your local machine
git clone git@github.com:<yourname>/lundium.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 git@github.com:lundegaard/lundium.git
git checkout master
git fetch upstream
git merge upstream/master