首次导入和检查项目的建议

发布于 2024-09-17 18:57:01 字数 424 浏览 4 评论 0原文

Subversion 1.6.6 使用命令行客户端

首次导入和检出项目。

我发现当我创建一个新项目时,我会执行正常的目录结构,即

game_sys_proj
    /trunk
    /branches
    /tags

步骤:

1) I import game_sys_proj to subversion repository. 
2) Delete game_sys_proj directory. 
3) Checkout game_sys_proj project. 

这将创建与我删除的内容完全相同的副本。

我只是想知道还有另一种方法可以做到这一点吗?其他开发人员第一次导入和结账时会做什么?

非常感谢您的任何建议,

Subversion 1.6.6 using the commend line client

Importing and checking out project for the first-time.

I find that when I create a new project I do the normal directory structure, i.e.

game_sys_proj
    /trunk
    /branches
    /tags

Steps :

1) I import game_sys_proj to subversion repository. 
2) Delete game_sys_proj directory. 
3) Checkout game_sys_proj project. 

This will create the exact duplicate of what I deleted.

I am just wondering is there another way of doing this? What do other developers do when they import and checkout for the first time?

Many thanks for any suggestions,

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

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

发布评论

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

评论(1

比忠 2024-09-24 18:57:01

您可以使用就地结账,而不是导入和删除。例如,如果您在 file:///var/svn/game_sys_proj 创建存储库,只需将新存储库的主干检出到当前目录:

$ cd game_sys_proj
$ svn co file:///var/svn/game_sys_proj/trunk .
$ svn add foo bar baz # add all files/directories you want in version control
$ svn commit

另请参阅常见问题解答

Instead of importing and deleting, you can use an in-place checkout. For example, if you created your repository at file:///var/svn/game_sys_proj, just checkout the trunk of the new repository to your current directory:

$ cd game_sys_proj
$ svn co file:///var/svn/game_sys_proj/trunk .
$ svn add foo bar baz # add all files/directories you want in version control
$ svn commit

Also see the FAQ.

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