* Re: [ANNOUNCE] Stacked GIT 0.14.2
2008-03-24 20:43 ` Junio C Hamano
@ 2008-03-24 22:31 ` Rene Herman
2008-03-24 22:50 ` Catalin Marinas
2008-03-24 23:55 ` Josef Sipek
2008-03-24 23:55 ` Catalin Marinas
2 siblings, 1 reply; 12+ messages in thread
From: Rene Herman @ 2008-03-24 22:31 UTC (permalink / raw)
To: Junio C Hamano
Cc: Catalin Marinas, Jan Engelhardt, git, Linux Kernel Mailing List,
Josef Sipek, Linus Torvalds
On 24-03-08 21:43, Junio C Hamano wrote:
> Rene Herman <rene.herman@keyaccess.nl> writes:
>
>> On 24-03-08 21:15, Jan Engelhardt wrote:
>>
>>> On Monday 2008-03-24 20:59, Catalin Marinas wrote:
>>>
>>>> Stacked GIT 0.14.2 release is available from
>>>> http://www.procode.org/stgit/.
>>>>
>>>> StGIT is a Python application providing similar functionality to Quilt
>>>> (i.e. pushing/popping patches to/from a stack) on top of GIT.
>>> I always wondered what the difference between stgit and guilt is.
>>> Does anyone have a comparison up?
>> And I remember some mumblings about git growing quilt-like
>> functionality itself. Anything on that?
>
> Not my mumbling
Believe it was Linus. Seem to remember him saying something about possibly
adding a native queues-like interface not too long ago but it's proving
impossible to google for.
> but I am quite open to slurp in guilt as a subdirectory in git.git at
> some point in the future just like we bundle git-gui and gitk if asked by
> the maintainer.
>
> The same applies to StGIT for that matter, although I somehow feel that
> is much less likely to happen, because it lived long enough as a
> standalone project with enough following to achieve sustainable momentum
> by itself.
Rene.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [ANNOUNCE] Stacked GIT 0.14.2
2008-03-24 22:31 ` Rene Herman
@ 2008-03-24 22:50 ` Catalin Marinas
2008-03-24 23:23 ` Rene Herman
0 siblings, 1 reply; 12+ messages in thread
From: Catalin Marinas @ 2008-03-24 22:50 UTC (permalink / raw)
To: Rene Herman
Cc: Junio C Hamano, Jan Engelhardt, git, Linux Kernel Mailing List,
Josef Sipek, Linus Torvalds
On 24/03/2008, Rene Herman <rene.herman@keyaccess.nl> wrote:
> On 24-03-08 21:43, Junio C Hamano wrote:
>
> > Rene Herman <rene.herman@keyaccess.nl> writes:
> >
> >> On 24-03-08 21:15, Jan Engelhardt wrote:
> >>
> >>> On Monday 2008-03-24 20:59, Catalin Marinas wrote:
> >>>
> >>>> Stacked GIT 0.14.2 release is available from
> >>>> http://www.procode.org/stgit/.
> >>>>
> >>>> StGIT is a Python application providing similar functionality to Quilt
> >>>> (i.e. pushing/popping patches to/from a stack) on top of GIT.
> >>> I always wondered what the difference between stgit and guilt is.
> >>> Does anyone have a comparison up?
> >> And I remember some mumblings about git growing quilt-like
> >> functionality itself. Anything on that?
> >
> > Not my mumbling
>
>
> Believe it was Linus. Seem to remember him saying something about possibly
> adding a native queues-like interface not too long ago but it's proving
> impossible to google for.
It was Linus indeed, on the linux-arch mailing list:
http://www.mail-archive.com/linux-arch@vger.kernel.org/msg05012.html
--
Catalin
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [ANNOUNCE] Stacked GIT 0.14.2
2008-03-24 22:50 ` Catalin Marinas
@ 2008-03-24 23:23 ` Rene Herman
2008-03-24 23:40 ` Catalin Marinas
0 siblings, 1 reply; 12+ messages in thread
From: Rene Herman @ 2008-03-24 23:23 UTC (permalink / raw)
To: Catalin Marinas
Cc: Junio C Hamano, Jan Engelhardt, git, Linux Kernel Mailing List,
Josef Sipek, Linus Torvalds
On 24-03-08 23:50, Catalin Marinas wrote:
> On 24/03/2008, Rene Herman <rene.herman@keyaccess.nl> wrote:
>> On 24-03-08 21:43, Junio C Hamano wrote:
>> >> On 24-03-08 21:15, Jan Engelhardt wrote:
>> >>> I always wondered what the difference between stgit and guilt is.
>> >>> Does anyone have a comparison up?
>> >> And I remember some mumblings about git growing quilt-like
>> >> functionality itself. Anything on that?
>> >
>> > Not my mumbling
>>
>>
>> Believe it was Linus. Seem to remember him saying something about possibly
>> adding a native queues-like interface not too long ago but it's proving
>> impossible to google for.
>
> It was Linus indeed, on the linux-arch mailing list:
>
> http://www.mail-archive.com/linux-arch@vger.kernel.org/msg05012.html
Probably read it on linux-kernel but yes, that was the one, thanks much.
Stored it as an interesting something -- used to use quilt and although I
didn't much care for its linear nature when managing an entire tree, it
probably works out well for private topic branches. Not overly sure of added
practical value over git rebase, but I did like the simple nature of
shuffling things around by just editing a series file back when I was using
quilt. Keeps one on top of things, so to speak (<-- amusing play on words).
Moreover not too keen on using many tools do do one thing, so getting this
inside git itself sounded like a possibly nice notion.
Rene.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [ANNOUNCE] Stacked GIT 0.14.2
2008-03-24 23:23 ` Rene Herman
@ 2008-03-24 23:40 ` Catalin Marinas
0 siblings, 0 replies; 12+ messages in thread
From: Catalin Marinas @ 2008-03-24 23:40 UTC (permalink / raw)
To: Rene Herman
Cc: Junio C Hamano, Jan Engelhardt, git, Linux Kernel Mailing List,
Josef Sipek, Linus Torvalds
On 24/03/2008, Rene Herman <rene.herman@keyaccess.nl> wrote:
> used to use quilt and although I
> didn't much care for its linear nature when managing an entire tree, it
> probably works out well for private topic branches. Not overly sure of added
> practical value over git rebase, but I did like the simple nature of
> shuffling things around by just editing a series file back when I was using
> quilt. Keeps one on top of things, so to speak (<-- amusing play on words).
Git rebasing is useful but using a patch management tool is much
easier, especially when you need to post a series of patches multiple
times while implementing others' comments. And this is not only for
private branches but public ones that are meant for upstream merging.
The problem with these tools is that they rewrite the history of the
repository but they are OK if you aren't in a position where people
need to base their work on your tree.
I would much prefer to simply commit the additional comments at the
top of a branch without changing the history but this makes patch
posting and reviewing more difficult. Because of this requirement to
keep clean patches (which I think is fair), people using maintainers'
branches can only use rebasing (or some patch management tool).
> Moreover not too keen on using many tools do do one thing, so getting this
> inside git itself sounded like a possibly nice notion.
I don't like using many tools either, hence I use mostly StGIT :-).
--
Catalin
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [ANNOUNCE] Stacked GIT 0.14.2
2008-03-24 20:43 ` Junio C Hamano
2008-03-24 22:31 ` Rene Herman
@ 2008-03-24 23:55 ` Josef Sipek
2008-03-24 23:55 ` Catalin Marinas
2 siblings, 0 replies; 12+ messages in thread
From: Josef Sipek @ 2008-03-24 23:55 UTC (permalink / raw)
To: Junio C Hamano
Cc: Rene Herman, Catalin Marinas, Jan Engelhardt, git,
Linux Kernel Mailing List
On Mon, Mar 24, 2008 at 01:43:00PM -0700, Junio C Hamano wrote:
> Rene Herman <rene.herman@keyaccess.nl> writes:
>
> > On 24-03-08 21:15, Jan Engelhardt wrote:
> >
> >> On Monday 2008-03-24 20:59, Catalin Marinas wrote:
> >>
> >>> Stacked GIT 0.14.2 release is available from
> >>> http://www.procode.org/stgit/.
> >>>
> >>> StGIT is a Python application providing similar functionality to Quilt
> >>> (i.e. pushing/popping patches to/from a stack) on top of GIT.
> >>
> >> I always wondered what the difference between stgit and guilt is.
> >> Does anyone have a comparison up?
> >
> > And I remember some mumblings about git growing quilt-like
> > functionality itself. Anything on that?
>
> Not my mumbling, but I am quite open to slurp in guilt as a subdirectory
> in git.git at some point in the future just like we bundle git-gui and
> gitk if asked by the maintainer.
Junio,
That'd be great! Is there anything special you want me to do? Well, I want
to finish up a merge I've been working on first.
Josef 'Jeff' Sipek.
--
Once you have their hardware. Never give it back.
(The First Rule of Hardware Acquisition)
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [ANNOUNCE] Stacked GIT 0.14.2
2008-03-24 20:43 ` Junio C Hamano
2008-03-24 22:31 ` Rene Herman
2008-03-24 23:55 ` Josef Sipek
@ 2008-03-24 23:55 ` Catalin Marinas
2 siblings, 0 replies; 12+ messages in thread
From: Catalin Marinas @ 2008-03-24 23:55 UTC (permalink / raw)
To: Junio C Hamano
Cc: Rene Herman, Jan Engelhardt, git, Linux Kernel Mailing List, Josef Sipek
On 24/03/2008, Junio C Hamano <gitster@pobox.com> wrote:
> Rene Herman <rene.herman@keyaccess.nl> writes:
> > And I remember some mumblings about git growing quilt-like
> > functionality itself. Anything on that?
>
>
> Not my mumbling, but I am quite open to slurp in guilt as a subdirectory
> in git.git at some point in the future just like we bundle git-gui and
> gitk if asked by the maintainer.
>
> The same applies to StGIT for that matter, although I somehow feel that is
> much less likely to happen, because it lived long enough as a standalone
> project with enough following to achieve sustainable momentum by itself.
Indeed, StGIT has grown quite a lot (it now has ~45 commands) and it
probably feels better as a tool on its own. However, I think it would
be good for git to get such functionality (and it could even share
some ideas StGIT and guilt). If this functionality will get fully
integrated in git, StGIT could use it directly rather than the
low-level git commands.
An example of additional functionality that might stay outside of git
(at least for a while): since basic patch management support is pretty
much complete in StGIT, a feature we are thinking about adding is
better support for patch sharing between developers (or
repositories/branches). This should allow easier cloning and merging
with branches that have a volatile history at the top.
--
Catalin
^ permalink raw reply [flat|nested] 12+ messages in thread