X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=builtin-rm.c;h=b7126e3e25d4f52ae8c4a120d524a24c11129785;hb=1689c5de8730ea334535337a341db3c7a21ad002;hp=e06640cf8d3418cbbe177b8fdcdccd19e0f3379f;hpb=ca6c06b2efe2f55c498670efcb419bce35678e03;p=git.git diff --git a/builtin-rm.c b/builtin-rm.c index e06640cf8..b7126e3e2 100644 --- a/builtin-rm.c +++ b/builtin-rm.c @@ -79,7 +79,8 @@ static int check_local_mod(unsigned char *head, int index_only) || hashcmp(ce->sha1, sha1)) staged_changes = 1; - if (local_changes && staged_changes) + if (local_changes && staged_changes && + !(index_only && is_empty_blob_sha1(ce->sha1))) errs = error("'%s' has staged content different " "from both the file and the HEAD\n" "(use -f to force removal)", name);