From: Junio C Hamano <junkio@cox.net>
To: ltuikov@yahoo.com
Cc: git@vger.kernel.org
Subject: Re: index manipulation -- how?
Date: Mon, 21 Nov 2005 21:24:01 -0800 [thread overview]
Message-ID: <7v8xvhi7bi.fsf@assigned-by-dhcp.cox.net> (raw)
In-Reply-To: <20051122050337.46450.qmail@web31808.mail.mud.yahoo.com> (Luben Tuikov's message of "Mon, 21 Nov 2005 21:03:37 -0800 (PST)")
Luben Tuikov <ltuikov@yahoo.com> writes:
> How do I reverse a _single_ "git-update-index" operation?
> Be it --add or just an update.
Reverting working tree files are "git checkout HEAD the-file"
(both index and working tree file from the head commit) or "git
checkout -- the-file" (working tree file from the index), but I
do not think there is a prepackaged way to revert only a single
index path offhand.
git-ls-tree HEAD the-file |
sed -e 's/^\([0-7]*\) [^ ]* \(.*\)/\1 \2/' |
git-update-index --index-info
should work.
I think changing update-index --index-info so that you can lose
the sed in between without breaking its other usage (it reads
from git-apply --index-info, which does not say " blob " which
is what the sed is stripping out) is a worthwhile thing to do.
next prev parent reply other threads:[~2005-11-22 5:24 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-11-22 5:03 index manipulation -- how? Luben Tuikov
2005-11-22 5:23 ` Linus Torvalds
2005-11-22 5:24 ` Junio C Hamano [this message]
2005-11-22 5:36 ` Junio C Hamano
2005-11-22 6:20 ` Luben Tuikov
2005-11-22 7:05 ` Junio C Hamano
2005-11-22 7:35 ` Luben Tuikov
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=7v8xvhi7bi.fsf@assigned-by-dhcp.cox.net \
--to=junkio@cox.net \
--cc=git@vger.kernel.org \
--cc=ltuikov@yahoo.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox