From: Junio C Hamano <junkio@cox.net>
To: Andy Parkins <andyparkins@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: Restore a single file in the index back to HEAD
Date: Wed, 01 Nov 2006 10:28:13 -0800 [thread overview]
Message-ID: <7vpsc710oy.fsf@assigned-by-dhcp.cox.net> (raw)
In-Reply-To: 200611010953.57360.andyparkins@gmail.com
Andy Parkins <andyparkins@gmail.com> writes:
> As I mentioned in my original email, I was wishing for
>
> git-reset --mixed HEAD oops/file1
>
> But of course, that doesn't make any sense in the context of of git-reset,
> which is really only a HEAD manipulator with extras.
Well, reset historically is _not_ HEAD manipulator. It is the
primarily Porcelain-ish to recover the index and/or the working
tree that is in an undesired state.
So from that point of view, the above commandline perfectly
makes sense. However, giving anything but HEAD with path makes
us go "Huh?" It is unclear what this should mean:
git-reset [--hard | --mixed] HEAD^ oops/file1
Checkout is a working tree manipulator Porcelain, and as a side
effect it has always updated the index. So it might make sense
to give --index-only there:
git checkout --index-only HEAD -- paths...
But from UI and workflow point of view, I think the situation
under discussion is that the user wishes to _recover_ from an
earlier update-index that he did not want to do. Although
update-index is not designed as a UI but as a plumbing, it has
been used as such (and git-status output even suggests use of
it), so maybe it is not such a bad idea to bite the bullet and
declare that it now _is_ a Porcelain-ish. Then we can do what
you suggested (with missing <commit> defaulting to HEAD):
git update-index --reset [<commit>] -- paths...
I am not enthused by this avenue, though. I'd like to keep low
level plumbing as "tool to do only one thing and one thing well"
and update-index is as low level as you would get.
On the other hand, we already have --again, so maybe we have
already passed the point of no return. So I am inclined to
agree with your "update-index --reset" approach, unless somebody
else injects sanity into me.
next prev parent reply other threads:[~2006-11-01 18:28 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-10-26 15:41 Restore a single file in the index back to HEAD Andy Parkins
2006-10-26 15:42 ` Alex Riesen
2006-10-27 7:27 ` Andy Parkins
2006-10-27 7:38 ` Shawn Pearce
2006-10-27 8:01 ` Andy Parkins
2006-10-27 8:08 ` Andreas Ericsson
2006-10-27 8:15 ` Shawn Pearce
2006-10-27 9:45 ` Alex Riesen
2006-10-27 9:50 ` Andreas Ericsson
2006-10-27 10:02 ` Junio C Hamano
2006-10-27 17:45 ` Luben Tuikov
2006-11-01 7:58 ` Nguyen Thai Ngoc Duy
2006-11-01 8:07 ` Junio C Hamano
2006-11-01 8:34 ` Junio C Hamano
2006-11-01 9:09 ` Nguyen Thai Ngoc Duy
2006-11-01 11:22 ` Jakub Narebski
2006-11-01 9:38 ` Jakub Narebski
2006-11-01 8:39 ` Andy Parkins
2006-11-01 8:56 ` Junio C Hamano
2006-11-01 9:53 ` Andy Parkins
2006-11-01 18:28 ` Junio C Hamano [this message]
2006-11-01 20:29 ` Andy Parkins
2006-11-01 20:49 ` Junio C Hamano
2006-11-01 21:18 ` Andy Parkins
2006-11-01 22:08 ` Junio C Hamano
2006-11-01 23:09 ` Andy Parkins
2006-11-01 23:39 ` Junio C Hamano
2006-11-02 8:44 ` Andy Parkins
2006-11-01 22:27 ` Robin Rosenberg
2006-11-02 12:47 ` Salikh Zakirov
2006-10-27 9:03 ` [PATCH] Added description for inverting git-update-index using --index-info Andy Parkins
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7vpsc710oy.fsf@assigned-by-dhcp.cox.net \
--to=junkio@cox.net \
--cc=andyparkins@gmail.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.