Create a new branch from an up to date master branch on your fork.
- Fork the lundium repository on Github
- Clone your fork to your local machine
git clone git@github.com:<yourname>/lundium.git
- Create a branch
git checkout -b my-topic-branch`
- 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.
- 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