On Tue, Oct 16, 2007 at 12:16:28PM +0100, Johannes Schindelin wrote: > > first let me thank you for being the interim maintainer. I know it is > much work, and I frankly do not have the time, or nerve, to do it. Out of > curiousity: did you use the scripts in "todo" to send these emails? I've recently started trying to use some of the scripts in "todo" to send similar "What's cooking" messages, and started wondering if they were what Junio actually used in production to send his notes. For example, the scripts don't work particularly well if the refs have been packed. So I had to make changes such as these so they would work for me. I was waiting for Junio to get back from vacation to ask if he was interested in accepting such changes, and/or changes to make the scripts more general purpose, and possibly useful for other projects. - Ted diff --git a/PU b/PU index 4b4be2b..4643a42 100755 --- a/PU +++ b/PU @@ -26,8 +26,8 @@ case "$#" in 0) # interactive ;-) shift - HH=`cd .git/refs/heads && find -type f | - sed -e 's/^\.\///' \ + HH=`git-show-ref --heads | awk '{print $2}' |\ + sed -e 's;refs/heads/;;' \ -e '/^naster$/d' -e '/^master$/d' -e '/^maint$/d' -e '/^pu$/d'` while test "$HH" do diff --git a/RB b/RB index 918a372..a890cfd 100755 --- a/RB +++ b/RB @@ -3,9 +3,9 @@ master_sha1=`git rev-parse --verify refs/heads/master` LF=' ' -(cd .git/refs/heads && find -type f) | +git-show-ref --heads | awk '{print $2}' | sed -n \ - -e 's/^\.\///' \ + -e 's;refs/heads/;;' \ -e '/^[^\/][^\/]\//p' | while read topic do - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html