server-nalc/README.md

107 lines
3.6 KiB
Markdown
Raw Normal View History

2014-12-03 20:15:18 +01:00
minetestforfun_game subgame and mods
2014-10-28 17:13:06 +01:00
===================
2014-12-03 20:15:18 +01:00
You can find here the subgame and the mods of the server MinetestForFun.
2014-12-08 19:27:44 +01:00
2015-01-21 00:24:56 +01:00
If you want help us, don't hesitate and take a look at our ToDoList [here](https://lite5.framapad.org/p/r.446ce575dd27b3c3e8a8efb34f28ac2d).
2014-12-08 19:27:44 +01:00
Contributors
===================
2015-02-26 01:48:57 +01:00
- Ombridride - Darcidride - MinetestForFun
2015-01-12 20:06:33 +01:00
> Server hoster, reposity owner.
2015-02-26 01:48:57 +01:00
- LeMagnesium - Mg
2015-02-26 01:46:58 +01:00
> Debugging, mod maintenance and global variables annihilator.
2015-02-26 01:48:57 +01:00
- crabman77 - crabman - guillaume
2015-02-26 01:46:58 +01:00
> Debugging, mod maintenance and global variables annihilator.
2015-01-12 20:06:33 +01:00
- mgl512
2015-06-04 23:12:32 +02:00
> Helper for debugging, and leaves very useful comments.
2015-01-12 20:06:33 +01:00
- Ataron
> Occasionnal debogger, texture creater.
2015-01-12 20:06:33 +01:00
- Gael-de-Sailly
> Kittens carer, debogger and Mapgen creator.
2015-03-15 17:28:21 +01:00
- davedevils
> Gardener, creepers' father and chickens' friend.
2015-04-03 00:28:13 +02:00
- Obani
> Audio bit king.
- gravgun
> Database warrior and mod maintenancer.
2014-12-08 19:28:24 +01:00
minetestforfun_game sous-jeu et mods
2014-12-08 19:27:44 +01:00
===================
2014-12-08 19:28:24 +01:00
Vous pouvez trouver ici le sous-jeu et les mods du serveur MinetestForFun.
2014-12-08 19:27:44 +01:00
2015-01-21 00:24:56 +01:00
Si vous voulez nous aider, n'hésitez pas et jetez un coup d'oeil à notre ToDoList [ici](https://lite5.framapad.org/p/r.446ce575dd27b3c3e8a8efb34f28ac2d).
Contributeurs
===================
2015-02-26 01:48:57 +01:00
- Ombridride - Darcidride - MinetestForFun
2015-01-12 20:06:33 +01:00
> Hébergeur du serveur, possesseur du dépôt.
2015-02-26 01:48:57 +01:00
- LeMagnesium - Mg
2015-02-26 01:46:58 +01:00
> Deboggueur, entretien des mods et annihilateur de variables globales.
2015-02-26 01:48:57 +01:00
- crabman77 - crabman - guillaume
2015-02-26 01:46:58 +01:00
> Deboggueur, entretien des mods et annihilateur de variables globales.
2015-01-12 20:06:33 +01:00
- mgl512
2015-06-04 23:12:32 +02:00
> Aide au déboggage, et laisse des commentaires très utiles.
2015-01-12 20:06:33 +01:00
- Ataron
> Déboggueur occasionnel, créateur de textures
2015-01-12 20:06:33 +01:00
- Gael-de-Sailly
> Soigneur, deboggueur de chatons et créateur de générateur de carte.
2015-03-15 17:28:21 +01:00
- davedevils
> Jardinier, père des creeper et ami des poulets.
2015-04-03 00:28:13 +02:00
- Obani
> Roi du bit audio.
- gravgun
> Guerrier des base de données et entretienneur de mods.
Note to developpers
===================
Recently many changes have been made in the repository. New methods have been
adopted for pushing/pulling from the repository. You will find here the most
importants
### When you are pushing
After committing, you will need to reproduce your changes on parallel branches.
For example, if you commit on master :
> git format-patch HEAD~<amount of commits to reproduce> --stdout > patch_for_branch.patch
> # Created a .patch file to apply commits on the other branch
> git checkout <parallel branch>
> git am ./patch_for_branch.patch # Apply the patch
> git push origin <parallel branch>
If you want to see which files are being modified, or how many lines are added :
> git apply --stat < patch_for_branch.patch
another_file.txt | 0
another_file.txt | 0
2 files changed, 0 insertions(+), 0 deletions(-)
>
If you want to check whether or not you will have to resolve merge conflicts :
> git apply --check < patch_for_branch.patch
If you get errors, then git am will require you to solve merge conflicts.
### When a parallel branch cannot be pulled
WIP works are often put on parallel branch to not disturb simple
updates or fixes for mods (even if they should be reproduced on these
branches as shown above). However, there might be problems, requiring
devs to 'forcepush' on the branches.
__*Note:*__ It will never happen on `master`
If you cannot pull, then, here is what to do :
> git checkout master
> git branch -D <parallel branch>
> git checkout -b <parallel branch>
> git branch --set-upstream-to=origin/<parallel branch>
> git pull origin <parallel branch>
This will delete your copy of the branch, create a new one, and replace
it with the remote content. You can also :
> git pull --force