为什么 p4sync -f 文件夹不恢复已删除的文件夹?

发布于 2024-10-31 02:21:15 字数 171 浏览 0 评论 0原文

(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦忆晨望 2024-11-07 02:21:15

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 by p4 add foo/bar.txt

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文