1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-07-05 18:00:23 +02:00
server-nalc/other_things/scripts/Git/rebase_active_branches.sh
2015-08-17 01:14:55 +02:00

22 lines
391 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
echo "Branches rebased."
#EOF