-2
git add는 삭제 된 파일에 대해 작동하지 않는 것 같습니다. 변경 사항을 커밋하는 방법은 무엇입니까?rm 대신 rm을 사용하여 삭제하는 파일을 커밋하는 방법은 무엇입니까?
$ git status
# On branch master
# Changes not staged for commit:
# (use "git add/rm <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# deleted: ci/ci/__init__.py
# deleted: ci/ci/settings.py
# deleted: ci/ci/urls.py
# deleted: ci/ci/wsgi.py
# deleted: ci/manage.py
#
no changes added to commit (use "git add" and/or "git commit -a")
여기서 정확히 무엇을하려합니까? git이 파일을 삭제했다는 커밋을 기록하고 싶습니까? –
관련 게시물 http://stackoverflow.com/questions/1402776/how-do-i-commit-all-deleted-files-in-git – williamcarswell
@ColinR 나는 웹이 될 MVC 디렉토리입니다. – hugemeow