Contributing to openage¶
“Can I even help?”
You can’t do anything wrong. Except not doing anything.
There is no wrongdoing, just wrong restraint.
What can I do?¶
“Help - I want to contribute something, but I don’t know what?”
You’re in luck. There’s various sources for tasks:
Have a look at the issue tracker, especially issues with labels:
Use your favorite code searching tool to find
TODOmessages!The issue tracker milestones!
milestones.md (more ambitious, obviously…)!
What’s the concept?¶
We basically do whatever we think is good to do.
The openage architecture is the foundation. For our development concept, see the development guide.
If you need some inspiration what to work on, see above.
*Please at least skip over this whole file if you want to contribute some code to openage!
tl;dr¶
Have a GitHub account
Click the fork button
git clone git@github.com:YourAccount/openage.gitcd openagegit remote add upstream https://github.com/SFTtech/openage.gitgit checkout -b tentacle-monster-fixEdit file, adhere to coding style!
Add yourself to
copying.mdgit add libopenage/unit/tentacle_monster.cppgit commit -m "engine: fixed vomiting animation of tentacle monster"make checkallmake testgit push origin tentacle-monster-fixCreate a pull request and look at the CI output
Watch cat pictures while waiting for feedback
Read on below if you need more detailed instructions and quality hints.
Workflow¶
We use the git fork/commit/pull request model.
Note: The following is for larger features. For tiny stuff like typo fixes, just create your PR and be done with it.
Fork the repo and add the needed remotes.
the
upstreamremote is SFTtech/openagethe
originremote is YourAccount/openage
Create a branch for your feature (“feature branch”:
git checkout -b feature-name).This should only contain commits for
feature-name, e.g. all changes relevant for branchreally-secure-drm.You can always update to upstream state by rebasing.
Discuss your ideas and your work:
On the group chats
That way, “bad ideas” can be “resolved” beforehand and “better ideas” are found
“Release early and often!” also applies to pull requests!
Once your branch has some visible work, create
[WIP]pull requestGive the pull request a description of what you did or want to do, so we can discuss it
Make sure you are in the
copying.mdfilePeople will be able to look at your code and give feedback
You’ll get free checks from the build bot
Once your work is done, remove the
[WIP]so it can be mergedDo the changes that are requested by the reviewers.
Aaaaaand you’re done.
What makes a good Pull Request good?¶
Before making a pull request, it’s good to review these things:
Run
make testto check whether any functionality has been brokenBefore pushing, run
make checkall. If that fails, the automatic buildbot will reject your code.If this is your first contribution, add yourself to the authors list in copying.md.
Commit messages should be meaningful, they should say in a sentence (or very little text) what changes it has without requiring to read the entire diff. tpope knows this very well!
You should rebase your work to avoid “clutter” in your commits and use the latest upstream code.
We have a buildbot (currently kevin-ci) that runs all sorts of checks.
It can be a bit fascist at times, so don’t be shocked if it rejects your code, and go fix it instead.
The pull request will present your code to the community, which may point out some things that you might haven’t noticed. You should fix stuff until everybody is happy.
Rebasing¶
What the hell is it, and (why) do I need it?
Rebasing is ‘moving’ your commits to a different parent commit.
In other words: Cut off your branch from its tree, and attach it somewhere else.
There’s two main applications:
If you based your work on a older master (so old that stuff can’t be automatically merged), you can rebase to move your commits to the current upstream master:
# update the upstream remote to receive new commits
git fetch upstream
# be on your feature branch (you probably are)
git checkout nobody-likes-you
# make backup (you never know, you know?)
git branch nobody-likes-you-backup
# rebase: put your commits on top of upstream's master
git rebase -m upstream/master
If you want to fix an older commit of yours, or merge several commits into a single one (squash them), rebase interactively. We don’t want to have a commit history like this:
add stufffix typo in stufffix compilationchange stuff a bitand so on…
rebase in practice¶
git log --graph --oneline shows your commit history as graph.
To make some changes in that graph, you do an interactive rebase:
git rebase -i -m upstream/master
With this command, your new “base” is upstream/master and you can
then change any of your branch’s commits.
-i will open an interactive editor where you can choose actions for each individual commit:
re-order commits
drop commits by deleting their line
squash/fixup (“meld”) your commits
reword a commit message
stop rebasing at a commit to edit (
--amend) it manually
Just follow the messages on screen.
Changing commits with amend and fixup¶
There’s also git commit --amend which is a “mini-rebase” that modifies just the last commit with your current changes by git add.
It just skips the creation of a new commit and instead melds the changes into the last one you made.
If you want to update a single commit in the range [upstream/master, current HEAD] which is not the last commit:
edit stuff you wanna change in some previous commitgit add changed_stuffgit commit --fixup $hash_of_commit_to_be_fixedgit rebase --autosquash -i -m upstream/master
Pushing changes¶
After you have rebased stuff (“rewritten history”) that had already been pushed, git will not accept your pushes because they’re not simple fast-forwards:
The commit contents and the parent commit have changed as you updated the commit, therefore the commit hash changed, too.
If somebody used those commits, they will keep a copy and have a hard time updating to your updated version (because they “use” the old hashes).
Update your pull request branch with your re-written history!
force push is the standard way of overwriting your development work with the fixed and mergeable version of your contribution!
Why? You changed the commits, so you want the old ones to be deleted!
You can use any of:
git push origin +nobody-likes-yougit push origin -f you-are-fatgit push origin --force and-you-are-adopted
Some extra tutorials on git rebase:
man git-rebase