Skip to content

Commit 58fab02

Browse files
author
Junio C Hamano
committed
WI/WC updates.
1 parent fc70b3b commit 58fab02

File tree

2 files changed

+15
-19
lines changed

2 files changed

+15
-19
lines changed

WC

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ log () {
1111
}
1212

1313
echo "To: git@vger.kernel.org"
14-
echo "Subject: What's in git.git"
14+
echo "Subject: What's in git.git (stable)"
1515
echo "X-maint-at: $maint_at"
1616
echo "X-master-at: $master_at"
1717

@@ -34,21 +34,3 @@ then
3434
echo
3535
log $tagged heads/master
3636
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

0 commit comments

Comments
 (0)