summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--development/debian_packages_in_git.mdwn9
1 files changed, 7 insertions, 2 deletions
diff --git a/development/debian_packages_in_git.mdwn b/development/debian_packages_in_git.mdwn
index 8c6680f..5111cb6 100644
--- a/development/debian_packages_in_git.mdwn
+++ b/development/debian_packages_in_git.mdwn
@@ -37,5 +37,10 @@ Assuming the Debian source package has it's patches in *debian/patches* and thes
git checkout master
gbp-pq export
-#### Team maintenance
-You can push out patch-queue branches. Other team members must just be aware that that branches in the *patch-queue/* namespace are being rebased frequently. But it's actually easier to simply use *gbp-pq import* and keep the patch-queue branch local only.
+### Team maintenance
+The easiest way is to not push out any patch-queue/* branches at all. They can be recreated by any team member easily by using
+
+ git branch -d patch-queue/master
+ gbp-pq import
+
+However you *can* push out patch-queue branches. Other team members must just be aware that that branches in the *patch-queue/* namespace are being rebased frequently.