On Sat, Apr 16, 2005 at 04:01:45PM -0700, Linus Torvalds wrote:
> So I re-created the dang thing (hey, it takes just a few minutes), and
> pushed it out, and there's now an archive on kernel.org in my public
> "personal" directory called "linux-2.6.git". I'll continue the tradition
> of naming git-archive directories as "*.git", since that really ends up
> being the ".git" directory for the checked-out thing.

We need to work out how we're going to manage to get our git changes to
you.  At the moment, I've very little idea how to do that.  Ideas?

At the bottom is the script itself.  There's probably some aspects of
it which aren't nice, maybe Petr can advise on this (and maybe increase
the functionality of the git shell script to fill in where necessary.)

However, I've made a start to generate the necessary emails.  How about
this format?

I'm not keen on the tree, parent, author and committer objects appearing
in this - they appear to clutter it up.  What're your thoughts?

I'd rather not have the FQDN of the machine where the commit happened
appearing in the logs.  (I've 'xxxx'd it out for the time being, because
I'd rather not have yet more email-address-like objects get into spammers
databases with which to hammer my 512kbps DSL line.)

Linus,

Please incorporate the latest ARM changes.

This will update the following files:

 arm/kernel/process.c                |   15 +++++++++++----
 arm/kernel/traps.c                  |    8 ++------
 arm/lib/changebit.S                 |   11 ++---------
 arm/lib/clearbit.S                  |   13 ++-----------
 arm/lib/setbit.S                    |   11 ++---------
 arm/lib/testchangebit.S             |   15 ++-------------
 arm/lib/testclearbit.S              |   15 ++-------------
 arm/lib/testsetbit.S                |   15 ++-------------
 arm/mach-footbridge/dc21285-timer.c |    4 ++--
 arm/mach-sa1100/h3600.c             |    2 +-
 asm-arm/ptrace.h                    |    5 +----
 asm-arm/system.h                    |    3 +++
 12 files changed, 32 insertions(+), 85 deletions(-)

through these ChangeSets:

        tree 7c4d75539c29ef7a9dde81acf84a072649f4f394
        parent d5922e9c35d21f0b6b82d1fd8b1444cfce57ca34
        author Russell King <[EMAIL PROTECTED]> 1113749462 +0100
        committer Russell King <[EMAIL PROTECTED]> 1113749462 +0100
        
        [PATCH] ARM: bitops
        
        Convert ARM bitop assembly to a macro.  All bitops follow the same
        format, so it's silly duplicating the code when only one or two
        instructions are different.
        
        Signed-off-by: Russell King <[EMAIL PROTECTED]>
        tree fc10d3ffa6062cda10a10cb8262d8df238aea4fb
        parent 5d9a545981893629c8f95e2b8b50d15d18c6ddbc
        author Russell King <[EMAIL PROTECTED]> 1113749436 +0100
        committer Russell King <[EMAIL PROTECTED]> 1113749436 +0100
        
        [PATCH] ARM: showregs
        
        Fix show_regs() to provide a backtrace.  Provide a new __show_regs()
        function which implements the common subset of show_regs() and die().
        Add prototypes to asm-arm/system.h
        
        Signed-off-by: Russell King <[EMAIL PROTECTED]>
        tree 5591fced9a2b5f84c6772dcbe2eb4b24e29161fc
        parent 488faba31f59c5960aabbb2a5877a0f2923937a3
        author Russell King <[EMAIL PROTECTED]> 1113748846 +0100
        committer Russell King <[EMAIL PROTECTED]> 1113748846 +0100
        
        [PATCH] ARM: h3600_irda_set_speed arguments
        
        h3600_irda_set_speed() had the wrong type for the "speed" argument.
        Fix this.
        
        Signed-off-by: Russell King <[EMAIL PROTECTED]>
        tree 2493491da6e446e48d5443f0a549a10ed3d35b62
        parent e7905b2f22eb5d5308c9122b9c06c2d02473dd4f
        author Russell King <[EMAIL PROTECTED]> 1113748615 +0100
        committer Russell King <[EMAIL PROTECTED]> 1113748615 +0100
        
        [PATCH] ARM: footbridge rtc init
        
        The footbridge ISA RTC was being initialised before we had setup the
        kernel timer.  This caused a divide by zero error when the current
        time of day is set.  Resolve this by initialising the RTC after
        the kernel timer has been initialised.
        
        Signed-off-by: Russell King <[EMAIL PROTECTED]>

---

#!/bin/sh
prev=$(cat .git/heads/origin)
to=$(cat .git/HEAD)
who=Linus
what=ARM
 
cat << EOT
${who},
 
Please incorporate the latest ${what} changes.
 
This will update the following files:
 
EOT
 
git diff $prev $to | diffstat -p1
 
cat << EOT
 
through these ChangeSets:
 
EOT
 
this=$to
while [ "$this" != "$prev" ]; do
  cat-file commit $this | sed 's,.*,\t&,'
  this=$(cat-file commit $this | grep ^parent | cut -d ' ' -f 2)
done


-- 
Russell King

-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to