SVN 检出文件夹的内容,而不是文件夹本身

发布于 2024-07-22 17:40:52 字数 430 浏览 7 评论 0原文

我对 linux 和 svn 还很陌生。 我正在尝试使用此命令(在 public_html 中)将项目的 trunk 文件夹检出到我的 public_html 目录中:

svn checkout file:///home/landonwinters/svn/waterproject/trunk

waterproject 目录包含解压 drupal 基本安装的文件。

它检查得很好,除了所有文件都在 public_html/trunk 中,而不仅仅是在 public_html 中。

我不知道将 trunk 的所有内容移动到 public_html 和 rm trunk 的命令,但我想我可以相对容易地弄清楚这一点。 我只想知道是否可以只查看文件夹的内容,而不查看文件夹本身。

I'm fairly new to linux and svn. I'm trying to checkout the trunk folder of a project into my public_html directory using this command (while in public_html):

svn checkout file:///home/landonwinters/svn/waterproject/trunk

The waterproject directory contains the files from untarring a base install of drupal.

It checks out fine, except all the files are in public_html/trunk instead of just being in public_html.

I don't know the command to move all the contents of trunk up to public_html and rm trunk, but I think I could figure that out relatively easily. I just want to know if I can just check out the contents of a folder, without the folder itself.

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

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

发布评论

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

评论(4

唐婉 2024-07-29 17:40:52

只需添加一个 . 即可:

svn checkout file:///home/landonwinters/svn/waterproject/trunk .

这意味着:签出到当前目录。

Just add a . to it:

svn checkout file:///home/landonwinters/svn/waterproject/trunk .

That means: check out to current directory.

将军与妓 2024-07-29 17:40:52
svn co svn://path destination

要指定当前目录,请使用“.” 对于您的目标目录:

svn checkout file:///home/landonwinters/svn/waterproject/trunk .
svn co svn://path destination

To specify current directory, use a "." for your destination directory:

svn checkout file:///home/landonwinters/svn/waterproject/trunk .
最后的乘客 2024-07-29 17:40:52

只需在命令行中添加目录即可:

svn checkout svn://192.168.1.1/projectname/ target-directory/

Just add the directory on the command line:

svn checkout svn://192.168.1.1/projectname/ target-directory/
梦里兽 2024-07-29 17:40:52

在命令行上提供目录:

svn checkout file:///home/landonwinters/svn/waterproject/trunk public_html

Provide the directory on the command line:

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