Re: Call Me Gitless

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tue, 19 Aug 2008, Junio C Hamano wrote:

> Daniel Barkalow <barkalow@xxxxxxxxxxxx> writes:
> 
> > .... For most systems, "diff" without options is a preview of 
> > what would be in the patch if you were to commit; "git diff", on the other 
> > hand, shows what would be left out of the patch.
> 
> That is true, but I also think that is because (1) on other systems, you
> cannot even choose to select changes to "leave out of the patch", so they
> have no option other than showing "what could be committed", and (2) by
> definition active use of index means that you are staging incrementally,
> and it is natural to expect you to want to view "changes since the last
> staging" much more often than "what would be committed" when you are
> staging incrementally, so the current default is the _right_ one.

Wow, that's a completely different idea of how to use the index than I 
think of. When I think of staging things incrementally, I'm taking a 
working tree with a ton of changes, and triaging them into: (a) things 
that go into this commit; (b) things that I want to hang onto but not put 
in yet; and (c) things I want to get rid of. This is after I've got a 
working version of the change, and I'm just cleaning it up and debugging. 
This, of course, is essentially the same as using the index for merging, 
where you start using the index when you've got all the content available 
(including stuff you don't want), and you finish with the state you'll 
want to commit.

When I want to do what you're doing, I just do a commit and then use 
--amend when I've done more work (or I work on a temporary branch). I 
think the real benefit of the index is that it doesn't have to match a 
complete-working-tree state you've actually had, so you can use it to 
commit the correct version of API A without user B when you really wrote a 
buggy version of A, then wrote B, then fixed A.

> So I'd say the below is a faulty argument:
> 
> > ...  So, even given that 
> > people understand the meaning of the index, they can fail to understand 
> > what "diff" will tell them.
> 
> If they understand "the meaning of the index", not just as literal reading
> of the manual page "it is a staging area to prepare for the next commit",
> but including the reason why there is a "staging area" and how it is to be
> used, they would reach the conclusion that "diff by default will show the
> leftover from incremental staging and it is the right thing".

I think you may be overly limited in "how the index is to be used". One of 
the major advantages, in my view, of git over other systems is that you 
can incrementally decide what of the changes persent in your working tree 
will be included in the next commit, and the index stores what you've 
decided to include. That is, you can not only checkpoint your work on 
changing the content, you can even checkpoint your work on forming the 
content change into commits, and you can checkpoint your work on resolving 
merge conflicts.

Simply checkpointing content changes is, IMHO, better done in ways other 
than the index (git stash, throw-away development branches) that allow you 
to recover to earlier checkpoints; having private commits satisfies this 
need admirably, while the index allows incremental work on preparing a 
commit out of changes you've written, which is an area where nothing but 
the index works nearly so well.

> > ... And diff is a bit unhelpful in that it 
> > generates headers as for "diff -r a b", regardless of what the things are.
> 
> We have a separate thread on this now ;-)

Right.

> >> (2) Some concepts in git are different from what they are used to, without
> >>     any good reason.  IOW, the concepts have room for improvement, and our
> >>     UI is based on these faulty concepts.
> >> 
> >> (3) Some concepts in git may be exactly the same with other systems, yet
> >>     our UI may operate differently from them without any good reason.
> >> 
> >> I'd be surprised if there is _no_ UI element that falls into the latter
> >> two categories, but obviously I would not be able to list examples.  If I
> >> could, they instead would have long been fixed already.
> >
> > You've got to include the class of "The concepts in git are exactly the 
> > same as with other systems (although git also has additional concepts), 
> > and commands from other systems do not do the same thing in git (with or 
> > without good reason)."
> 
> Isn't it the same as (3)?

Well there may be a good reason, which (3) excludes. 

> > E.g., git has a working directory, and git has a committed state, and CVS 
> > has both of these, and "cvs diff" compares the working directory with the 
> > committed state, but "git diff" does a different operation.
> 
> Ah, Ok, that is not the same as (3), but "although git has more" makes it
> totally different.
> 
> Your example sounds like comparing a car and a motorcycle.  Yes they both
> share two tyres, but the former having two more tyres makes the driving
> technique of the whole thing quite different, doesn't it?

Ah, but a motorcycle has handlebars and a car has a steering wheel. That 
is, they somewhat arbitrarily have different user interfaces, 
corresponding to the difference in driving technique. That would be like 
having "git diff" not exist, but "git cmp" serve the same goal as "cvs 
diff", because git can do a different and more useful operation than cvs 
can do, but we'd name it differently because it's not the same operation.

	-Daniel
*This .sig left intentionally blank*
--
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

[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]

  Powered by Linux