WI/WC updates.
Junio C Hamano committed
Dec 20, 2006 at 12:23 UTC
58fab02a67855e11f09c4473986094a62e283f8c
2 files changed
+15
-19
WC
new
+14
@@ -0,0 +1,14 @@
1
+#!/bin/sh
2
+# Prepare "What's cooking in git.git"
3
+
4
+master_at=$(git rev-parse --verify refs/heads/master)
5
+next_at=$(git rev-parse --verify refs/heads/next)
6
+
7
+echo "To: git@vger.kernel.org"
8
+echo "Subject: What's cooking in git.git (topics)"
9
+echo "X-master-at: $master_at"
10
+echo "X-next-at: $next_at"
11
+
12
+Meta/git-topic.perl --base=master | sed -e 's/^\*./*/'
13
+
14
+
WI
+1
-19
@@ -11,7 +11,7 @@ log () {
11
}
12
13
echo "To: git@vger.kernel.org"
14
-echo "Subject: What's in git.git"
14
+echo "Subject: What's in git.git (stable)"
15
echo "X-maint-at: $maint_at"
16
echo "X-master-at: $master_at"
17
@@ -34,21 +34,3 @@ then
34
echo
35
log $tagged heads/master
36
fi
37
-
38
-list=`git-rev-list refs/heads/master..refs/heads/next 2>/dev/null`
39
-if test -n "$list"
40
-then
41
- echo
42
- echo "* The 'next' branch, in addition, has these."
43
- echo
44
- log heads/master..heads/next
45
-fi
46
-
47
-list=`git-rev-list ^refs/heads/master ^refs/heads/next refs/heads/pu 2>/dev/null`
48
-if test -n "$list"
49
-then
50
- echo
51
- echo "* The 'pu' branch, in addition, has these."
52
- echo
53
- log ^heads/master heads/next..heads/pu
54
-fi