Oct 102014
Answer:
Sometimes, when you've removed files without using the git rm and git will warn you the message "Changed but not updated.."
To fix this, you can use the command
# git ls-files --deleted -z | xargs -0 git rm
Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.
Answer:
Sometimes, when you've removed files without using the git rm and git will warn you the message "Changed but not updated.."
To fix this, you can use the command
# git ls-files --deleted -z | xargs -0 git rm