mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-03 17:10:27 +01:00
22 lines
391 B
Bash
Executable File
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
|