Due to GitHub limitations this project has not been forked from the boilerplate project. Incorporating the latest changes from the boilerplate is therefore slightly more work.
-
Create and switch to a new branch.
$> git checkout -b <yourbranch> -
Add the boilerplate as remote.
$> git remote add upstream https://github.com/WoodWing/csde-components-boilerplate -
Pull in the latest changes from the boilerplate.
$> git pull upstream master --no-ff -
Resolve merge conflicts. In particular this
README.mdwill result in conflicts. In most cases you want to ignore the changes to boilerplate'sREADME.md. -
Push your changes to the remote.
$> git push origin <yourbranch> -
Create a pull request.