This is the home of our programming team. Here every change made will be tested for integration conflicts before further merging into main.
Please read code-contributing before creating a Pull Request.
If your modifications require additional assets, please also read design-contributing.
The programming team will focus on adding new features using this branch
The design team will focus on creating a cohesive athmophere in the game using this branch
Please resmect your branches :D
It is required that you have git LFS installed.
git clone https://github.com/RPGeeks/curly-burly.git
cd curly-burly
git submodule update --init --recursive
Create your own branch, chose a name descriptive for your work.
git checkout -b <insert_branch_name>
When you reach a stable behaviour commit your changes and open a Pull Request.
git add *
git status # double check everything is fine
git commit -a -m "<your_message_here>"
git push origin <insert_branch_name>
!note: Your message should be short but self-explenatory.
You might thing of that as the answer to:
Q: "What will this commit do?"
A: "Add feature_x and solve bug_y"
!note2: Your commits should be also short, make your reviewers life easy and he might do the same.