mirror of
https://github.com/git/git.git
synced 2024-11-19 00:34:00 +01:00
Merge branch 'tb/git-mv-icase-fix'
Fix a corner case bug in "git mv" on case insensitive systems, which was introduced in 2.29 timeframe. * tb/git-mv-icase-fix: git mv foo FOO ; git mv foo bar gave an assert
This commit is contained in:
commit
ef486a9ecf
@ -221,7 +221,7 @@ int cmd_mv(int argc, const char **argv, const char *prefix)
|
||||
}
|
||||
argc += last - first;
|
||||
}
|
||||
} else if (!(ce = cache_file_exists(src, length, ignore_case))) {
|
||||
} else if (!(ce = cache_file_exists(src, length, 0))) {
|
||||
bad = _("not under version control");
|
||||
} else if (ce_stage(ce)) {
|
||||
bad = _("conflicted");
|
||||
|
Loading…
Reference in New Issue
Block a user