SVN 检出文件夹的内容,而不是文件夹本身
我对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
只需添加一个
.
即可:这意味着:签出到当前目录。
Just add a
.
to it:That means: check out to current directory.
要指定当前目录,请使用“.” 对于您的目标目录:
To specify current directory, use a "." for your destination directory:
只需在命令行中添加目录即可:
Just add the directory on the command line:
在命令行上提供目录:
Provide the directory on the command line: