提交 0ff5bf7c 编写于 作者: J Junio C Hamano

Implement git-update-cache --force-remove <path>

This new flag tells git-update-cache to remove the named path even
when the work tree still happens to have the file.  It is used to
update git-merge-one-file-script not to smudge the work tree.
Signed-off-by: NJunio C Hamano <junkio@cox.net>
上级 74400e71
......@@ -306,6 +306,15 @@ int main(int argc, char **argv)
i += 3;
continue;
}
if (!strcmp(path, "--force-remove")) {
if (argc <= i + 1)
die("update-cache: --force-remove <path>");
if (remove_file_from_cache(argv[i+1]))
die("update-cache: --force-remove cannot remove %s", argv[i+1]);
i++;
continue;
}
if (!strcmp(path, "--ignore-missing")) {
not_new = 1;
continue;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册