File tree Expand file tree Collapse file tree 2 files changed +15
-19
lines changed
Expand file tree Collapse file tree 2 files changed +15
-19
lines changed Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ log () {
1111}
1212
1313echo " To: git@vger.kernel.org"
14- echo " Subject: What's in git.git"
14+ echo " Subject: What's in git.git (stable) "
1515echo " X-maint-at: $maint_at "
1616echo " X-master-at: $master_at "
1717
3434 echo
3535 log $tagged heads/master
3636fi
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
You can’t perform that action at this time.
0 commit comments