* 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; 15+ 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] 15+ 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; 15+ 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] 15+ 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; 15+ 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] 15+ 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; 15+ 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] 15+ 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-25 9:50 ` slurping in guilt, was " Johannes Schindelin
2008-03-24 23:55 ` Catalin Marinas
2 siblings, 1 reply; 15+ 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] 15+ messages in thread
* slurping in guilt, was Re: [ANNOUNCE] Stacked GIT 0.14.2
2008-03-24 23:55 ` Josef Sipek
@ 2008-03-25 9:50 ` Johannes Schindelin
2008-03-26 21:24 ` Junio C Hamano
0 siblings, 1 reply; 15+ messages in thread
From: Johannes Schindelin @ 2008-03-25 9:50 UTC (permalink / raw)
To: Josef Sipek; +Cc: Junio C Hamano, git
Hi,
[cutting down the Cc: list to the most-likely-interested parties]
On Mon, 24 Mar 2008, Josef Sipek wrote:
> On Mon, Mar 24, 2008 at 01:43:00PM -0700, Junio C Hamano wrote:
>
> > 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.
>
> 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.
Would it not be more appropriate to slurp it in as a subproject? But then
the same grace period as for git-gui and gitk would apply, since we still
expect some users not to have a submodule capable git...
Ciao,
Dscho
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: slurping in guilt, was Re: [ANNOUNCE] Stacked GIT 0.14.2
2008-03-25 9:50 ` slurping in guilt, was " Johannes Schindelin
@ 2008-03-26 21:24 ` Junio C Hamano
2008-03-27 0:03 ` Josef Sipek
0 siblings, 1 reply; 15+ messages in thread
From: Junio C Hamano @ 2008-03-26 21:24 UTC (permalink / raw)
To: Johannes Schindelin; +Cc: Josef Sipek, git
Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:
> [cutting down the Cc: list to the most-likely-interested parties]
>
> On Mon, 24 Mar 2008, Josef Sipek wrote:
>
>> On Mon, Mar 24, 2008 at 01:43:00PM -0700, Junio C Hamano wrote:
>>
>> > 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.
>>
>> 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.
>
> Would it not be more appropriate to slurp it in as a subproject? But then
> the same grace period as for git-gui and gitk would apply, since we still
> expect some users not to have a submodule capable git...
All true. On the other hand we could start with a subtree merge and later
switch.
In any case, the answer to Josef's question is to make sure I won't hear
objections on the list that say "No, the stuff is still too premature to
live in git.git itself and needs this and that fixups to be usable for the
general public." ;-) IOW, keep up the good work. Gathering a bit more
followers, preferably outside this mailing list (such as wine, x.org
and/or the kernel community), would not hurt.
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: slurping in guilt, was Re: [ANNOUNCE] Stacked GIT 0.14.2
2008-03-26 21:24 ` Junio C Hamano
@ 2008-03-27 0:03 ` Josef Sipek
0 siblings, 0 replies; 15+ messages in thread
From: Josef Sipek @ 2008-03-27 0:03 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Johannes Schindelin, git
On Wed, Mar 26, 2008 at 02:24:22PM -0700, Junio C Hamano wrote:
...
> In any case, the answer to Josef's question is to make sure I won't hear
> objections on the list that say "No, the stuff is still too premature to
> live in git.git itself and needs this and that fixups to be usable for the
> general public." ;-) IOW, keep up the good work.
Great...of course _I_ know all the things in guilt that _I_ would like to
see changed (the maintainer syndrome?). :)
> Gathering a bit more followers, preferably outside this mailing list (such
> as wine, x.org and/or the kernel community), would not hurt.
The git mailing list is interesting because it tends to have people from all
the other projects as well. From the looks of things, Guilt seems to have a
pretty strong following the Linux filesystem area.
If things go well, I'll be able to go to OLS and have a BoF session about
Guilt (already got an Ok from the conference folks, it's just a matter of
figuring out travel/hotel).
Overall, sounds like a plan.
Josef 'Jeff' Sipek.
--
Failure is not an option,
It comes bundled with your Microsoft product.
^ permalink raw reply [flat|nested] 15+ 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; 15+ 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] 15+ messages in thread