Re: [GSoC] What is status of Git's Google Summer of Code 2008 projects?

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Miklos Vajna
Date: Wednesday, July 9, 2008 - 3:56 am

On Wed, Jul 09, 2008 at 12:18:41PM +0200, Sverre Rabbelier <alturin@gmail.com> wrote:

What I did squashing fixes regularly, but I keep a 'history' branch
where I always reference to the old HEAD, so others can still have a
look at the individual commits.

It's like:

$ cat rebase-builtin-merge.sh
#!/bin/sh -e

[ -n "$*" ]

old_head=$(git rev-parse HEAD)
git rebase $*
git update-ref refs/heads/rebase-history \
        $(echo "Rebased with 'git rebase $*'" | \
        git commit-tree HEAD^{tree} -p rebase-history -p $old_head -p HEAD)

It will not work properly if you get conflicts, but you got the idea.
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Re: [GSoC] What is status of Git's Google Summer of Code 2 ..., Johannes Schindelin, (Tue Jul 8, 9:45 am)
Re: [GSoC] What is status of Git's Google Summer of Code 2 ..., Miklos Vajna, (Wed Jul 9, 3:56 am)
Re: [GSoC] What is status of Git's Google Summer of Code 2 ..., Johannes Schindelin, (Sun Jul 20, 6:05 pm)
Re: [GSoC] What is status of Git's Google Summer of Code 2 ..., Johannes Schindelin, (Thu Aug 14, 4:04 pm)
Re: [GSoC] What is status of Git's Google Summer of Code 2 ..., Sverre Rabbelier, (Sat Aug 16, 10:26 pm)