Skip to content

Contribution Guidlines

Adrian Wennberg edited this page Mar 25, 2019 · 3 revisions

Contributions to our BrassLands modules are highly appreciated!

Step 1: Fork

Click on the Fork button on the repository page.

Fork Repository

Step 2: Clone the

git clone [email protected]:YOUR_USERNAME/REPOSITORY_NAME.git
# Clones your fork of the repository into the current directory in terminal on your computer

Step 3: Create a new branch

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.

Step 4: Make changes and push code

# add some changes
git add .
git commit -m""
# keep adding changes and committing until the feature is done.
git push origin branch-name

Step 5: Create a pull request on Github

This article describes in a very good way how to create a pull request on the Github platform.