Difference between revisions of "Git"
m |
m (Make sure the name “Minetest Game” is used consistently throughout this page) |
||
Line 7: | Line 7: | ||
Git also has the ability to create branches in one repository. This allows developers to work on multiple features at the same time. | Git also has the ability to create branches in one repository. This allows developers to work on multiple features at the same time. | ||
− | Minetest has two repositories: the engine is in the “minetest” repository, whereas the main game, | + | Minetest has two repositories: the engine is in the “minetest” repository, whereas the main game, Minetest Game, is in the “minetest_game” repositories. The repositories are hosted on [[GitHub]]. |
== Use Git to get the latest updates == | == Use Git to get the latest updates == | ||
Line 16: | Line 16: | ||
git clone git://github.com/minetest/minetest.git # Creates a directory called "minetest" with all the content. | git clone git://github.com/minetest/minetest.git # Creates a directory called "minetest" with all the content. | ||
− | # Get | + | # Get Minetest Game: |
cd minetest/games/ | cd minetest/games/ | ||
git clone git://github.com/minetest/minetest_game.git # Creates a directory called "minetest_game" with all the content. | git clone git://github.com/minetest/minetest_game.git # Creates a directory called "minetest_game" with all the content. | ||
Line 26: | Line 26: | ||
</source> | </source> | ||
− | To get the latest updates of | + | To get the latest updates of Minetest Game: |
<source lang="bash"> | <source lang="bash"> | ||
cd games/minetest_game/ | cd games/minetest_game/ |
Revision as of 17:10, 11 October 2015
Git is a version control system. It handles projects as repositories (often called repos) with a history. The history consists of commits. A commit is a change to the code with the description.
Git allows people to create forks of a repo. A fork is a new repo with the same history and content, but when commiting to the fork, the main repo is not affected. This allows developers to work on projects without access to the main repo.
To bring other peoples work into the main repo, they can open a pull request. This can easily be done in the GUI of GitHub.
Git also has the ability to create branches in one repository. This allows developers to work on multiple features at the same time.
Minetest has two repositories: the engine is in the “minetest” repository, whereas the main game, Minetest Game, is in the “minetest_game” repositories. The repositories are hosted on GitHub.
Use Git to get the latest updates
You can use Git to get the latest updates of Minetest in a RUN_IN_PLACE version. To do this, clone the main repo:
# Get the engine:
git clone git://github.com/minetest/minetest.git # Creates a directory called "minetest" with all the content.
# Get Minetest Game:
cd minetest/games/
git clone git://github.com/minetest/minetest_game.git # Creates a directory called "minetest_game" with all the content.
To get the latest updates of the engine (you have to compile Minetest after this) do this in the cloned minetest directory:
git pull
To get the latest updates of Minetest Game:
cd games/minetest_game/
git pull
Using Git for development
Creating a fork
To use Git for development you have to fork the main repository on GitHub first. After this you can clone your repo:
git clone git://github.com/Your_user_name_on_GitHub/minetest.git #Creates a directory called "minetest" with all the content
cd minetest/
Coding a feature or a bug fix
Create a new branch to code your feature (be sure to give them good names (not just “patch” or “fix”)):
git checkout -b feature_branch
Now, you can code your feature or bug fix. If you are done, you have to commit your changes and push them to your repository on GitHub:
git add . # Adds all changes; alternatively you can specify single files
git commit -m "Your feature"
git push origin feature_branch
Commit messages should start with a capital letter and use the present tense. They should sum up the feature/fix.
You can now acces your code in your repository on GitHub and open a pull request for it to the main repo.
To go back to your master branch do:
git checkout master
If you have to update your feature, do:
git checkout feature_branch
# Do changes
git add .
git commit -m "Update message"
git push origin feature_branch
This will automatically be added to the pull request (if there is one).
Updating your fork
You can use Git to update your Minetest fork with the latest changes of the offical repository.
Prerequisites
If you haven't already you need to tell git where to get the changes.
git remote add upstream https://github.com/minetest/minetest
cd games/minetest_game
git remote add upstream https://github.com/minetest/minetest_game
Updating the fork
You need to download the changes of the main repo first and then merge them.
For the engine:
# Get the changes:
git fetch upstream
# Merge the changes:
git rebase upstream/master
# Push the result to GitHub:
git push
For the game:
cd games/minetest_game
# Get the changes:
git fetch upstream
# Merge the changes:
git rebase upstream/master
# Push the result to GitHub:
git push