Folder is locked and I can't unlock it

前端 未结 17 2221
离开以前
离开以前 2021-01-30 07:48

When I\'m trying to update or commit code from a project it\'s telling me that the folder is locked. When I try to \"release lock\" it says that there\'s nothing to unlock in th

17条回答
  •  醉话见心
    2021-01-30 08:39

    Using svn command line to unlock the local folders, just use svn cleanup.

    Before:

    # svn commit -m "fixing #1234"

    commit

    # svn st

    before

    # svn cleanup

    After:

    # svn st

    after

    # svn commit -m "fixing #1234"

    after2

提交回复
热议问题