Git: How to commit a manually deleted file?
Use git add -A
, this will include the deleted files.
Note: use git rm
for certain files.
The answer's here, I think.
It's better if you do git rm <fileName>
, though.
Use git add -A
, this will include the deleted files.
Note: use git rm
for certain files.
The answer's here, I think.
It's better if you do git rm <fileName>
, though.