-
-
Notifications
You must be signed in to change notification settings - Fork 491
Git guide, TODO 'n' notTODO
Before you start pushing your changes to SuperTux, you should read this. We can't force you to read it, but if you are at all new to git then you will almost certainly mess up at some point. This should help to avoid some mistakes that may be specific to Supertux.
Here are some of our recommendations for working with git:
-
Do not use the
master
branch to make pull requests- This will tie said branch to the pull request. It might happen that other stuff gets added to the SuperTux master branch while your pull request is under review. In that case, resolving conflicts to getting your master branch to work for your next pull request is hard.
- Make sure that the remote origin is really the main SuperTux remote
- Use
git remote -vv
to show your remotes.git remote rename <old name> <new name>
to rename a remote -
git branch master --set-upstream-to origin/master
orgit branch master -u origin/master
git pull
- Use
-
When you want to change something, create a branch first
- Make sure that you are on the master branch by
git branch -vv
- Create a branch by
git branch <branch name>
- Switch to your newly created branch by
git checkout <branch name>
- Change whatever you want and commit it
- Push it to your fork by
git push --set-upstream <remote>/<branch>
the first time you do this. After that push only bygit push
. The<remote>
should be the name of your fork, usually your nickname. Usegit remote -vv
to get the names of all your remotes - Make a pull request
- Make sure that you are on the master branch by
-
Do not merge branches, or pull without --rebase
- Merges create extra merge commits we don't need and want in our main repo
- Rebase your changes instead. So when you want to make your pull request up-to-date with master, use
git pull --rebase origin master
rather than a simplegit pull origin master
- If you rebased your changes, you will want to use
git push --force-with-lease
to push your changes to your fork
- When you want to test someone's changes
-
git branch <branch name>
andgit branch <branch name> -u <remote>/<branch name>
- Make sure that you are on the root of that branch. Otherwise DO NOT push your merge commit!
-
Unless you have more than 20 commits in one pull request, don't squash normal commits down until asked. This makes it easier to check your code for problems if any occur. When it is agreed that your pull request is worth adding to the project, then you may be asked to rebase.
For a tutorial on rebasing look here.
In order to get the rebase changes to take effect you will have to force push to your fork of supertux. Only force push to your own fork of Supertux.
- Never force-push to a shared branch
- Don't constantly ask other people to update their content
- Use only constructive criticism, as being rude or acting annoyed could scare off a potential developer!
- Don't beg anyone to teach you something. Instead, ask them for guidance if you encounter a problem when following an online tutorial
- Don't revert other people's work unless you're told to do so
- Don't push erroneous commits to master
- Don't be too vague, try to be as specific as possible
- When you make a big change, push it to your forked GitHub repository and make a pull request
- Owners: Try not to push more than 3 commits straight to master at once. For small changes it should be rebased first and for big changes it should be put in a pull request
Home
Guidelines
Game Mechanics
Tools
Engine
- Cameras in other games
- Collision
- Configuration File
- Console
- Cutscenes
- Game_Engine
- Lighting
- Map_transformer
- Portables
- SceneGraph
- Scripting
Specifications
Milestones
- Milestone 1 Analysis
- Milestone 2 Design Document
- Milestone 2 Design Document Old
- Milestone 3 Design Document
Building (mostly outdated)
- INSTALL.md
- Building
- Building on macOS
- Building SuperTux
- Building on Windows
- Building with MXE (cross-compile)
Meetings