在 Perforce 中同步多个 depo 项目中的特定 depo

发布于 2024-12-11 06:22:50 字数 191 浏览 0 评论 0原文

如何仅同步 P4 中我的 depo 中的 1 个特定分支。

下面的命令需要文件名:

p4 sync -n -f //depot/...filename

但我想同步整个分支&我的笔记本电脑中有多个分支。我如何明确告诉 P4 仅同步特定的 depo 分支?

谢谢!

How can I sync only 1 particular branch from my depo in P4.

Below command needs the file name:

p4 sync -n -f //depot/...filename

But I want to sync entire branch & I've multiple branches in my laptop. How can I specifically tell P4 to sync only a particular depo branch?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

半透明的墙 2024-12-18 06:22:50

您显示的命令行中的 ... 大致意味着“每个子树”,因此它会在您的仓库下的所有分支中同步该文件名。相反,您可以给出您实际想要的文件的完整路径(无论是本地形式还是仓库形式):

# sync everything in a branch
p4 sync -n -f //depot/path/to/branch/...    

# sync only one file in a branch
p4 sync -n -f //depot/path/to/branch/.../filename.ext

The ... in the command line you show means, roughly, "every subtree", so it syncs that filename in all branches under your depot. Instead you can give the full path -- either in local, or depot form -- of the file you actually want:

# sync everything in a branch
p4 sync -n -f //depot/path/to/branch/...    

# sync only one file in a branch
p4 sync -n -f //depot/path/to/branch/.../filename.ext
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文