git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* bug: git fast-import should ignore configuration variable core.ignorecase
@ 2012-04-22 12:23 Philippe Martens
  0 siblings, 0 replies; only message in thread
From: Philippe Martens @ 2012-04-22 12:23 UTC (permalink / raw)
  To: git, msysgit


[-- Attachment #1.1: Type: text/plain, Size: 1925 bytes --]

Hello,

 

I’m not quite sure if this is to be considered a Windows specific bug. I’m
using Git-1.7.10-preview20120409 on Windows, but the problem exists in
previous versions.

 

When fast-exporting | fast-importing on Windows a repository with case only
renames, the resulting repository isn’t a copy of the initial repository.
This is because Windows repositories are created with core.ignorecase = true
by default.

 

The included script shows the problem: it creates a repository with
SomeFile.txt renamed to SOMEFILE.txt, then fast-export it and fast-import it
in two different repositories, with core.ignorecase=false and
core.ignorecase=true. The sha-1 of the second commit in the repository with
core.ignorecase=true is different from the initial repository because the
rename is ignored.

The situation is worse without rename detection on fast-export : the rename
becomes a delete.

 

I think the configuration variable core.ignorecase should be ignored by
fast-import, and case always taken into account in that case.

 

Kind regards,

 

Philippe Martens

Lead Architect

 

METRUM

Rue du Kiem, 163

L-8030 Strassen

Tél : +352 26 00 87 01

Fax : +352 26 00 87 02

GSM : +352 661 26 00 37

Email :  <mailto:philippe.martens@metrum.lu> philippe.martens@metrum.lu

Web : www.metrum.lu

 

P Please consider the environment before printing this e-mail.

 

-- 
*** Please reply-to-all at all times ***
*** (do not pretend to know who is subscribed and who is not) ***

*** Please avoid top-posting. ***

You received this message because you are subscribed to the Google
Groups "msysGit" group.
To post to this group, send email to msysgit@googlegroups.com
To unsubscribe from this group, send email to
msysgit+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/msysgit?hl=en_US?hl=en

[-- Attachment #1.2: Type: text/html, Size: 6564 bytes --]

[-- Attachment #2: test-fast-import.sh --]
[-- Type: application/octet-stream, Size: 612 bytes --]

git init export
cd export
git config core.ignorecase true
echo "With some content in it..." > SomeFile.txt
git add .
git commit -m "Add some file"
git mv -f SomeFile.txt SOMEFILE.txt
git commit -m "Rename it (case only)"
git fast-export --all -M -C > ../git.fast-export
git log --oneline

git init ../ignorecase.false
cd ../ignorecase.false
git config core.ignorecase false
git fast-import --quiet < ../git.fast-export
git log --oneline

git init ../ignorecase.true
cd ../ignorecase.true
git config core.ignorecase true
git fast-import --quiet < ../git.fast-export
git log --oneline
cd ..

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2012-04-22 16:43 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-22 12:23 bug: git fast-import should ignore configuration variable core.ignorecase Philippe Martens

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).