~launchpad-pqm/launchpad/devel

8968.3.1 by Jonathan Lange
Add a script that shows unmerged revisions in the trunk branches.
1
#!/bin/bash
8968.3.2 by Jonathan Lange
Documentation.
2
# Shows the unmerged revisions in trunk branches.
3
#
4
# Assumes the names devel, stable, db-devel, db-stable and assumes that the
5
# script is being run from the top-level of a sibling directory.
8968.3.1 by Jonathan Lange
Add a script that shows unmerged revisions in the trunk branches.
6
7
cd ..
8
9
# Show missing
10
echo "Untested revisions in devel"
11
echo "---------------------------"
12
cd stable
13
bzr missing --theirs-only --short ../devel/
14
echo
15
16
echo "Unmerged revisions from stable"
17
echo "------------------------------"
18
cd ../db-devel
19
bzr missing --theirs-only --short ../stable
20
echo
21
22
echo "Untested revisions in db-devel"
23
echo "------------------------------"
24
cd ../db-stable
25
bzr missing --theirs-only --short ../db-devel