Link howto documents from the main git.txt documentation.

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Junio C Hamano
2005-08-25 00:28:18 -07:00
parent 628894b26d
commit e6fc2346c1
4 changed files with 71 additions and 1 deletions

27
Documentation/howto-index.sh Executable file
View File

@ -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