Status “S” in Subversion

后端 未结 14 1057
臣服心动
臣服心动 2021-02-03 16:52

At some point all files in my working copy got marked with \"S\" symbol as shown below:

$ svn st
M    S   AclController.php
     S   InstallationController.php
          


        
14条回答
  •  一整个雨季
    2021-02-03 17:20

    A simple solution to get rid of the 'S' when you issue

    svn status
    

    is to just go to the dir that is marked with 'S' and delete the hidden .svn directory:

    rm -rf .svn

    Afterwards the sources show up marked with '?' and you could easily add them freshly:

    svn add path/to/resource

提交回复
热议问题