Question

When I do a git status, I see a change list that looks like this:

#       modified:   CustomizablePDFs/InvoiceAdapter.php
#       deleted:    "CustomizablePDFs\\Model/AlignContainer.php"

If I add then commit CustomizablePDFs/InvoiceAdapter.php, it will be commited (as it should be) and no longer appear in the status list (good).

However, git status will still show deleted: "CustomizablePDFs\\Model/AlignContainer.php" on the status list. If I do a git rm using that file path, it fails saying that the pathspec did not match any files.

How do I remove this entry from the status list?

Thank you,
Ben

Was it helpful?

Solution

git add -A followed by a commit fixed the problem.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top