Status “S” in Subversion

后端 未结 14 1080
臣服心动
臣服心动 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:11

    This is usually caused by an interruption when switching branches.

    Switch to a different branch, and then switch back to the branch you really want.

    svn switch some_other_branch_url

    svn switch desired_branch_url

提交回复
热议问题