summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMirco Bauer <meebey@meebey.net>2010-08-07 01:16:07 +0200
committerMirco Bauer <meebey@meebey.net>2010-08-07 01:16:07 +0200
commita7dc3450831f6c1b08e86f3ce8407ff744556705 (patch)
tree31257da42639708720e23b5b2ff2a4977a5d1c39
parent3b272c8800bfa6d39edc448ae7efb79296c70a62 (diff)
downloadmono-a7dc3450831f6c1b08e86f3ce8407ff744556705.tar.gz
Helper script for pulling patch branchesdebian/2.6.7-1
-rwxr-xr-xdebian/git-pull-debian-patches7
1 files changed, 7 insertions, 0 deletions
diff --git a/debian/git-pull-debian-patches b/debian/git-pull-debian-patches
new file mode 100755
index 0000000000..5868fc3de7
--- /dev/null
+++ b/debian/git-pull-debian-patches
@@ -0,0 +1,7 @@
+#!/bin/sh -e
+
+DEBIAN_PATCHES=$(git branch -l | egrep '\s+debian/patches/')
+for DEBIAN_PATCH in $DEBIAN_PATCHES; do
+ git checkout $DEBIAN_PATCH
+ git pull
+done