summaryrefslogtreecommitdiffstats
path: root/git-follow/rebase-all.sh
diff options
context:
space:
mode:
authorHans Ulrich Niedermann <hun@n-dimensional.de>2007-11-07 16:22:07 +0100
committerHans Ulrich Niedermann <hun@n-dimensional.de>2007-11-07 16:22:07 +0100
commita341a7fafd1d39f02be34430852d2c0736ca5447 (patch)
tree8b07ea318e33e55c88e5524ef5e2c1bdd6e4fc3c /git-follow/rebase-all.sh
parent0cb782ade9552ed0e393e4baf7565661c3420edb (diff)
downloadndim-git-utils-a341a7fafd1d39f02be34430852d2c0736ca5447.tar.gz
ndim-git-utils-a341a7fafd1d39f02be34430852d2c0736ca5447.tar.xz
ndim-git-utils-a341a7fafd1d39f02be34430852d2c0736ca5447.zip
Add new utilities: git-follow, git-buildmsg
Diffstat (limited to 'git-follow/rebase-all.sh')
-rw-r--r--git-follow/rebase-all.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/git-follow/rebase-all.sh b/git-follow/rebase-all.sh
new file mode 100644
index 0000000..02676c7
--- /dev/null
+++ b/git-follow/rebase-all.sh
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+set -x
+while read branch base restofline
+do
+ git rebase "$base" "$branch" || exit "$?"
+done<<EOF
+master origin
+ndim-trivial-fixes master
+ndim-doc ndim-trivial-fixes
+ndim/update-docs ndim-doc
+ndim/update-docs-auto ndim-doc
+ndim/update-man-sed ndim-doc
+fedora/generate-xinf ndim-trivial-fixes
+ndim-conntest-checks ndim-trivial-fixes
+EOF