为什么 p4sync -f 文件夹不恢复已删除的文件夹?
(foo 受源代码控制)
$ rm -rf foo
$ p4 sync -f foo
$ ls foo
ls: cannot access foo: No such file or directory
$ p4 sync -f foo/...
$ ls foo
bar.txt
(foo is source controled)
$ rm -rf foo
$ p4 sync -f foo
$ ls foo
ls: cannot access foo: No such file or directory
$ p4 sync -f foo/...
$ ls foo
bar.txt
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Perforce 不知道目录,这就是它无法“复活”的原因他们。第二次同步成功,因为您同步的不是目录,而是该目录中的文件。
目录
foo
最初并未随 p4 添加。它可能是由p4 add foo/bar.txt
添加的Perforce doesn't know about directories, that's why it cannot 'revive' them. The second sync succeeds, because you are not syncing the directory, but the files in this directory.
The directory
foo
wasn't added with p4 initially. It was probably added byp4 add foo/bar.txt