在父目录不再受版本控制后,我如何提交SVN删除



我正在清理一个Subversion目录,包括删除一个jquery ui目录(我想已经提交了),并将子目录的内容移动到其父目录。(我在Linux命令行上工作。)

一长串尝试的解决方案中的最后一个给出了:

jonathan@machine:~/svn3/coms_poc_ajax/trunk/coms/static$ svn update jquery-ui
At revision 53.
jonathan@machine:~/svn3/coms_poc_ajax/trunk/coms/static$ svn delete jquery-ui
D         jquery-ui
jonathan@machine:~/svn3/coms_poc_ajax/trunk/coms/static$ svn commit jquery-ui
svn: Commit failed (details follow):
svn: '/svn/coms_poc_ajax/trunk/coms/static' path not found
svn: Your commit message was left in a temporary file:
svn:    '/home/jonathan/svn3/coms_poc_ajax/trunk/coms/static/svn-commit.2.tmp'

所以我尝试用源代码管理注册目录:

jonathan@machine:~/svn3/coms_poc_ajax/trunk/coms/static$ cd ..
jonathan@machine:~/svn3/coms_poc_ajax/trunk/coms$ svn add static
svn: warning: 'static' is already under version control
jonathan@machine:~/svn3/coms_poc_ajax/trunk/coms$ svn commit static
...
svn: Commit failed (details follow):
svn: File 'static/jquery-ui' is out of date
svn: '/svn/coms_poc_ajax/!svn/wrk/a41dde0b-6ccd-43cf-80d6-c237fc63ceda/trunk/coms/static/jquery-ui' path not found
svn: Your commit message was left in a temporary file:
svn:    '/home/jonathan/svn3/coms_poc_ajax/trunk/coms/svn-commit.3.tmp'

我需要做些什么来消除jqueryui目录的幽灵并恢复正常提交更新?

如果指定了完整的URI,则可以直接删除存储库中的目录。

假设您的目录位于https://mysvn/svn3/coms_poc_ajax/trunk/coms/static/jquery-ui您可以使用以下语句将其删除。

svn rm https://mysvn/svn3/coms_poc_ajax/trunk/coms/static/jquery-ui -m"removing jquery-ui"

我尝试了两个答案,但仍在与Subversion作斗争。我进行了一次新的结账,这似乎消除了服务器和我的副本之间关于目录X是否应该存在的差异(至少目前是这样)。

最新更新