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
index a493615478..15afe23721 100755
--- a/WC
+++ b/WC
@@ -6,10 +6,12 @@ next_at=$(git rev-parse --verify refs/heads/next)
cat <<EOF
-To: git@vger.kernel.org
+From: Junio C Hamano <junkio@cox.net>
Subject: What's cooking in git.git (topics)
X-master-at: $master_at
X-next-at: $next_at
+Content-Type: text/plain; charset=utf-8
+Content-Transfer-Encoding: 8bit
Here are the topics that have been cooking. Commits prefixed
with '-' are only in 'pu' while commits prefixed with '+' are
@@ -19,5 +21,3 @@ order.
EOF
Meta/git-topic.perl --base=master | sed -e 's/^\*./*/'
-
-
WI
+3
-1
index 988eb4954e..fdd596defd 100755
--- a/WI
+++ b/WI
@@ -12,10 +12,12 @@ log () {
'
}
-echo "To: git@vger.kernel.org"
+echo "From: Junio C Hamano <junkio@cox.net>"
echo "Subject: What's in git.git (stable)"
echo "X-maint-at: $maint_at"
echo "X-master-at: $master_at"
+echo "Content-Type: text/plain; charset=utf-8"
+echo "Content-Transfer-Encoding: 8bit"
tagged=`git rev-parse --not --verify tags/sa/maint`
list=`git-rev-list $tagged refs/heads/maint 2>/dev/null`