Skip to content

Commit

Permalink
Merge branch 'branch-4-10' into branch-5-0
Browse files Browse the repository at this point in the history
  • Loading branch information
tbonfort committed Apr 4, 2012
2 parents 0e89685 + 9fb3b6f commit 973f93b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions stablemerge.sh
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
#!/bin/bash

git checkout branch-5-0
if $? -ne 0; then exit; fi
if test $? -ne 0; then exit; fi
git merge branch-4-10
if $? -ne 0; then exit; fi
if test $? -ne 0; then exit; fi
git checkout branch-5-2
if $? -ne 0; then exit; fi
if test $? -ne 0; then exit; fi
git merge branch-5-0
if $? -ne 0; then exit; fi
if test $? -ne 0; then exit; fi
git checkout branch-5-4
if $? -ne 0; then exit; fi
if test $? -ne 0; then exit; fi
git merge branch-5-2
if $? -ne 0; then exit; fi
if test $? -ne 0; then exit; fi
git checkout branch-5-6
if $? -ne 0; then exit; fi
if test $? -ne 0; then exit; fi
git merge branch-5-4
if $? -ne 0; then exit; fi
if test $? -ne 0; then exit; fi
git checkout branch-6-0
if $? -ne 0; then exit; fi
if test $? -ne 0; then exit; fi
git merge branch-5-6
if $? -ne 0; then exit; fi
if test $? -ne 0; then exit; fi
git checkout master
if $? -ne 0; then exit; fi
if test $? -ne 0; then exit; fi
git merge branch-6-0

0 comments on commit 973f93b

Please sign in to comment.