Subclipse-单个程序员的使用
在由于错误的逻辑分支而重写了一半项目后,我刚刚开始在我的班级项目中使用 subclipse。由于我在家庭系统上使用它,因此我有几个问题在搜索中没有找到答案。
假设我的计算机上有本地单独的存储库。首先,我可以使用文件同步来保持它们同步,直到我弄清楚需要做什么才能访问大学的网络吗? (除了 - 唯一可用的信息是关于通过 PUTTY 和 FTP 远程访问网络,它们不是有效的 URL 字符串)
其次,在同一个本地系统中,我是否正确,一旦我签出项目并定期应用提交,我是否正确?不必继续检查该项目吗?
I just started using subclipse for my class projects after a re-writing half of a project due to going off on the wrong logical branch. Since I'm using it on my home systems, I have a couple questions whose answers I haven't found in searching.
Say I have local separate repositories on my computers. First, can I use a file sync to keep them synced until I figure out what I need to do to access the university's network? (aside- only information available is about accessing the network remotely is thru PUTTY and FTP, which are not valid URL strings)
Second, in the same local system, am I correct in that once I check out a project and apply commits regularly, I don't have to keep checking out the project?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我最终使用 SlikSVN 来托管存储库,因为它是免费的 <100MB 存储空间,这非常适合我的课堂作业。而且,我不必费心通过学校网络进行隧道传输。
I ended up using SlikSVN for hosting the repository, since it is free for <100MB storage, which is perfect for my classwork. Also, I don't have to bother with tunneling through the school's network.
您可以通过 ssh 访问 SVN 存储库,使用以下形式的 URL:
从您所说的“putty”访问权限来看,这应该是很有可能的。
我会尽可能避免“单独的本地存储库”路线,因为保持它们同步会带来问题,而整个存储库拥有一个明确的位置可以避免这些问题。
You can access SVN repositories via ssh, using urls of the form:
From the sounds of things with you saying you have 'putty' access this should be very possible.
I would avoid the "separate local repositories" route as much as possible since keeping them in sync introduces problems that having one, definitive location for the whole repository avoids..