How to fix Subversion «!» status

前端 未结 6 1391
南方客
南方客 2021-01-31 01:40

The Subversion manual states:

\'!\'

Item is missing (e.g. you moved or deleted it without using svn). This also indicates that a directory is incomple

6条回答
  •  余生分开走
    2021-01-31 02:12

    svn revert /path/to/file
    svn rm /path/to/file      # if you want to delete it from svn itself
    

    Golden rule is: once something is under svn-control, any moving, deleting, renaming, should be done with svn commands (svn mv, svn rm, etc.), not using normal filesystem/file-explorer functions.

提交回复
热议问题