You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is not unusual for multiple distinct versions of Git to act on a
single repository. For example, some IDEs bundle a particular version
of Git, which can be a different version from the system copy of Git,
or on a Mac, /usr/bin/git quickly goes out of sync with the Homebrew
git in /usr/local/bin/git.
When a newer version of Git writes an index file that an older version
of Git does not know how to make full use of, this is a teaching
opportunity. The user may not be aware of what version of Git they
are using. Print an advice message to help the user to use the most
full featured version of Git (e.g. by futzing with their PATH).
warning: ignoring optional IEOT index extension
hint: This is likely due to the file having been written by a newer
hint: version of Git than is reading it. You can upgrade Git to
hint: take advantage of performance improvements from the updated
hint: file format.
hint:
hint: You can run "git config advice.unknownIndexExtension false"
hint: to suppress this message.
This replaces the message
ignoring IEOT extension
that existed previously and did not provide enough detail for a user
to act on it or suppress it.
Helped-by: Junio C Hamano <[email protected]>
Signed-off-by: Jonathan Nieder <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
0 commit comments