需要在我的本地机器中设置 Subversion
我使用的是 Windows7,并且在 Eclipse 中进行了大量 Java 编码。但我没有版本控制系统。我听说 Subversion 是一个非常流行的 VCS,所以我想将它设置在我的本地盒子中。您能给我一些关于从哪里开始/查看的指示吗?
我想使用 Eclipse 签入/签出文件。请指导我。
谢谢
I am using Windows7 and I do lot of Java coding in Eclipse. But I dont have a version control system. I have heard of Subversion being a very popular VCS, so I would like to set it in my local box. Can you please give me some pointers on where to start/look at?
I would like to checkin/checkout files using Eclipse. Please guide me.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您使用的是 Windows,则很难不使用 VisualSVN。至于 Eclipse,您可以在 此处 获取 Eclipse 插件
If you're on windows it's difficult not to go with VisualSVN. As for Eclipse you can get an eclipse plugin here
Subclipse http://subclipse.tigris.org/ 是 eclipse 的一个插件,允许您签出 / 中Eclipse IDE 中的文件。
它不会在你的机器上设置 SVN,你需要先安装 svn 并设置一个存储库,但与 eclipse 的集成是很好的。
Subclipse http://subclipse.tigris.org/ is a plugin for eclipse that allows you to checkout / in files inside of the eclipse IDE.
It doesn't get SVN set up on your machine, you'll need to install svn and set up a repository first, but the integration with eclipse is nice to have.
如果您是唯一需要访问存储库的人,则可以在文件系统上创建 svn 存储库,并且不需要安装和运行服务器。
http://vincenthomedev.wordpress .com/2007/10/15/setup-svn-local-repository-step-by-step/
Subclipse 是一个很棒的 Eclipse SVN 插件,您可能还会发现 TortoiseSVN 也非常方便。两者都非常易于使用。
If you're the only person who needs to access the repository, you can create a svn repository on your filesystem and you won't need to install and run a server.
http://vincenthomedev.wordpress.com/2007/10/15/setup-svn-local-repository-step-by-step/
Subclipse is a great SVN plugin for Eclipse, you might also find TortoiseSVN very handy as well. Both are very easy to use.
首先,您需要一个 Subversion 存储库,它可以是互联网上的远程服务器(google“免费 subversion 存储库”),也可以是在您的计算机上本地运行的服务器,也可以是 LAN 上的计算机。对于最后一个,您可以使用 VisualSVN Server。
设置 SVN 存储库后,您必须安装 SVN 客户端才能使用它。我推荐使用 TortoiseSVN 来处理一般的事情,但我很确定 Eclipse 具有内置的 SVN 支持,因此一旦设置了存储库服务器,您只需在 Eclipse 上配置客户端即可连接到它。
First, you'll need a Subversion repository, which can either be a remote server on the internet (google "free subversion repository"), or a server running locally on your machine, or a machine on your lan. For the last one, you can use VisualSVN Server.
Once with a SVN repository setup, you have to install a SVN client to work with it. I recommend TortoiseSVN for general stuff, but I'm pretty sure Eclipse has SVN support builtin, so once you've setup a repository server, you just have to configure the client on Eclipse to connect to it.