Skip to content
Eric Sandall edited this page Dec 30, 2015 · 1 revision

Welcome to the ModderationConfigs wiki!

Some links to help with forking, keeping your fork in sync, and making a pull request for me to merge your changes. Always make sure that your fork is in-sync with my master branch before you make a Pull request. :)

git remote add upstream [email protected]:sandalle/minecraft_bigreactor_control.git

git fetch upstream

git checkout master

git merge upstream/master

Make your changes

Commit your changes

git commit -m 'I changed XXX to fix Issue #YYY'

Test your changes

git push origin master

A Guide on Forking