Visual SVN/Tortoise“删除-保留本地”问题
我想从存储库中删除一些文件(同时将它们保留在本地),并在将来停止跟踪它们。
我试过这个: - 在我想从版本控制中删除的目录上使用了 Tortoise“删除 - 保留本地”。 - 致力于存储库。
此提交因以下错误而失败:提交失败...项目已过时
任何人都可以告诉我
a)正确的程序是什么?
b)我该怎么做才能回到工作存储库?
谢谢!
I wanted to remove some files from the repository (while leaving them locally), and stop tracking them in the future.
I tried this:
- Used Tortoise 'Delete - Keep local' on the directory I wanted to remove from versioning.
- Comitted to the repository.
This commit failed with this error: commit failed... item is out of date
Can anyone tell me
a) What the correct procedure is for this?
b) What can I do to get back to a working repository?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在提交更改之前,您需要先运行来删除文件。然后再次尝试您的提交。
svn update
。然后您可以运行 svn delYou need to first run
svn update
before you commit your changes. Then you can runsvn del <file>
to remove the files. Then try your commit again.