WI/WC: Make output more suitable for feeding send-email with
Junio C Hamano committed
Apr 30, 2007 at 15:29 UTC
1c89662c1a446d25b6e6199904bb4c47beb43693
2 files changed
+6
-4
WC
+3
-3
@@ -6,10 +6,12 @@ next_at=$(git rev-parse --verify refs/heads/next)
6
7
8
cat <<EOF
9
-To: git@vger.kernel.org
9
+From: Junio C Hamano <junkio@cox.net>
10
Subject: What's cooking in git.git (topics)
11
X-master-at: $master_at
12
X-next-at: $next_at
13
+Content-Type: text/plain; charset=utf-8
14
+Content-Transfer-Encoding: 8bit
15
16
Here are the topics that have been cooking. Commits prefixed
17
with '-' are only in 'pu' while commits prefixed with '+' are
@@ -19,5 +21,3 @@ order.
21
EOF
22
23
Meta/git-topic.perl --base=master | sed -e 's/^\*./*/'
22
-
23
-
WI
+3
-1
@@ -12,10 +12,12 @@ log () {
12
'
13
}
14
15
-echo "To: git@vger.kernel.org"
15
+echo "From: Junio C Hamano <junkio@cox.net>"
16
echo "Subject: What's in git.git (stable)"
17
echo "X-maint-at: $maint_at"
18
echo "X-master-at: $master_at"
19
+echo "Content-Type: text/plain; charset=utf-8"
20
+echo "Content-Transfer-Encoding: 8bit"
21
22
tagged=`git rev-parse --not --verify tags/sa/maint`
23
list=`git-rev-list $tagged refs/heads/maint 2>/dev/null`