-
Notifications
You must be signed in to change notification settings - Fork 5
Contribution Guidlines
Adrian Wennberg edited this page Mar 25, 2019
·
3 revisions
Contributions to our BrassLands modules are highly appreciated!
Click on the Fork button on the repository page.
git clone [email protected]:YOUR_USERNAME/REPOSITORY_NAME.git
# Clones your fork of the repository into the current directory in terminal on your computer
git checkout -b branch-name
# Creates a new local branch called branch-name
Make sure that the branch name for production releases is master
and the branch name for development is develop
, all other settings can probably be left as default.
# add some changes
git add .
git commit -m""
# keep adding changes and committing until the feature is done.
git push origin branch-name
This article describes in a very good way how to create a pull request on the Github platform.