Merge branch 'hv/submodule-update-nuke-submodules'

"git add" allows adding a regular file to the path where a submodule
used to exist, but "git update-index" does not allow an equivalent
operation to Porcelain writers.
This commit is contained in:
Junio C Hamano 2012-06-28 15:20:08 -07:00
Родитель 653111f99c 242f55f612
Коммит 72fd7d82d7
1 изменённых файлов: 0 добавлений и 6 удалений

Просмотреть файл

@ -211,12 +211,6 @@ static int process_path(const char *path)
if (S_ISDIR(st.st_mode))
return process_directory(path, len, &st);
/*
* Process a regular file
*/
if (ce && S_ISGITLINK(ce->ce_mode))
return error("%s is already a gitlink, not replacing", path);
return add_one_path(ce, path, len, &st);
}