在 SVN 签出时忽略受保护的文件夹

发布于 2024-12-15 08:42:23 字数 283 浏览 2 评论 0原文

我遇到以下问题:我们的 svn 存储库有外部文件,并且使用我的凭据无法访问外部文件的一个子目录(外部文件由不同的团队管理)。如果我使用 Tortoise 进行 SVN 结帐,我会收到输入 user/pw 的提示,只需取消此操作,它将继续处理下一个文件夹。

但是,如果我执行命令行签出(这在 C# 程序内运行),则程序会在达到设置的超时障碍后失败。我从未看到任何提示(即使它确实出现,那也没有帮助,因为该程序作为自动化进程运行)。

svn 是否有一些推荐行选项,我可以使用它忽略缺少签出权限的文件夹并让它继续下一个目录?

I am having the following problem: Our svn repo has externals, and one subdirectory of the externals is not accessible with my credentials (the externals are managed by a different team). If I do an SVN checkout with Tortoise, I get prompted for user/pw and can just cancel this and it will continue with the next folder.

However, if I do a command-line checkout (this runs inside a C# program) the program fails after hitting a set timeout barrier. I never see any prompt (and even if it did appear, that wouldn't be helpful, as this program runs as an automated process).

Is there some commend-line option for svn with which I can just ignore folders for which I am lacking checkout permissions and have it continue with the next directory?

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

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

发布评论

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

评论(1

他不在意 2024-12-22 08:42:23

svn co

  --depth ARG              : limit operation by depth ARG ('empty', 'files',
                             'immediates', or 'infinity')

  --ignore-externals       : ignore externals definitions

的选项可能会有所帮助

Options of svn co

  --depth ARG              : limit operation by depth ARG ('empty', 'files',
                             'immediates', or 'infinity')

or

  --ignore-externals       : ignore externals definitions

may help

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