1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-14 16:50:23 +02:00
server-nalc/other_things/scripts/rebase_active_branches.sh
LeMagnesium 8b8fdfa131 Completed proper merge of mobs mod
- Merged api :
	- little tweaks on yaw computing system and position handling when blasting
	- Centralisation of the explosion function used by both dungeon masters and
	  creepers : checks are made differently but still present in the function
- Merged dungeon masters
- Changed type of creepers from kamikaze to explode
- Tweaked a bit rebase script
2015-04-21 11:54:43 +02:00

17 lines
358 B
Bash
Executable File

# Rebase actives branches
# Script by LeMagnesium (20/12/15)
# @param : Branches to rebase from master
# Must be ran from the root of the repo or a subdirectory
for branch in $( git branch ); do
if [ branch != "master" ];
then
git checkout $branch
git pull origin $branch
git rebase master
git push -f origin $branch
fi
done
git checkout master