From: Jonathan Nieder <jrnieder@gmail.com>
To: Pete Wyckoff <pw@padd.com>
Cc: git@vger.kernel.org
Subject: Re: index rebuild for cloned repo
Date: Sun, 31 Oct 2010 13:07:58 -0500 [thread overview]
Message-ID: <20101031180758.GC5683@burratino> (raw)
In-Reply-To: <20101031174430.GA30236@arf.padd.com>
Hi Pete,
Pete Wyckoff wrote:
> While
> the data is identical, much of the inode information changes:
> uid, gid, ino, dev, mtime, ctime.
>
> What is the best way to rewrite .git/index in the clone? Options
> that work but are slow:
>
> git reset --hard HEAD
Not very good for this use case, as you noticed.
> git update-index --refresh
> stat and read all files, 5 min 55 sec
That's better (better yet with -q). The user-facing version is
"git add --refresh .".
[...]
> HACKED git update-index --refresh
> Just the stat, 13 sec
>
> The lstat() is required to look up the new inode number.
>
> The rest of the clone operation takes around 3 min, so
> I'd like to avoid this additional 5+ min of read()s if
> possible. Is there a way to do so using existing commands?
> Should I add a new option to update-index
Yes, a new option sounds sane.
> P.S. The user-observable problem that occurs if I do not
> rebuild the index is, e.g.:
>
> $ git cherry-pick build/top
> error: Your local changes to 'file.h' would be overwritten by merge. Aborting.
> Please, commit your changes or stash them before you can merge.
That's a bug. In general, the "high-level commands (porcelain)"
listed in the git manpage (other than gitk) are supposed to hide an
un-refreshed index from the user, generally by transparently
refreshing the index.
Thanks for reporting.
Hope that helps,
Jonathan
next prev parent reply other threads:[~2010-10-31 18:08 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-10-31 17:44 index rebuild for cloned repo Pete Wyckoff
2010-10-31 18:07 ` Jonathan Nieder [this message]
2010-10-31 19:59 ` [PATCH] cherry-pick/revert: transparently refresh index Jonathan Nieder
2010-10-31 20:26 ` Andreas Schwab
2010-10-31 20:32 ` Jonathan Nieder
2010-10-31 22:26 ` Pete Wyckoff
2010-10-31 22:28 ` [PATCH] teach update-index --refresh about --data-unchanged Pete Wyckoff
2010-11-03 17:37 ` Junio C Hamano
2010-11-03 18:36 ` Jonathan Nieder
2010-11-03 22:02 ` Pete Wyckoff
2010-11-14 16:58 ` Pete Wyckoff
2010-11-14 17:34 ` Jonathan Nieder
2010-11-01 8:09 ` [PATCH] cherry-pick/revert: transparently refresh index Johannes Sixt
2010-11-03 17:30 ` Junio C Hamano
2010-11-03 20:33 ` Johannes Sixt
2010-11-01 8:44 ` Nguyen Thai Ngoc Duy
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=20101031180758.GC5683@burratino \
--to=jrnieder@gmail.com \
--cc=git@vger.kernel.org \
--cc=pw@padd.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;
as well as URLs for NNTP newsgroup(s).