From e6fc2346c17b9a4ee274d509429042eec9c14db5 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Thu, 25 Aug 2005 00:28:18 -0700 Subject: Link howto documents from the main git.txt documentation. Signed-off-by: Junio C Hamano --- Documentation/howto-index.sh | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 Documentation/howto-index.sh (limited to 'Documentation/howto-index.sh') diff --git a/Documentation/howto-index.sh b/Documentation/howto-index.sh new file mode 100755 index 0000000000..3a6afb9f6a --- /dev/null +++ b/Documentation/howto-index.sh @@ -0,0 +1,27 @@ +#!/bin/sh + +cat <<\EOF +GIT Howto Index +=============== + +Here is a collection of mailing list postings made by various +people describing how they use git in their workflow. + +EOF + +for txt +do + title=`expr "$txt" : '.*/\(.*\)\.txt$'` + from=`sed -ne ' + /^$/q + /^From:[ ]/{ + s/// + s/^[ ]*// + s/[ ]*$// + s/^/by / + p + }' "$txt"` + echo " + * link:$txt[$title] $from" + +done -- cgit v1.2.3