我需要设置日蚀,以便能连接到 SVN, 检查项目或文件到远程位置。 远程位置以Linux为基础, 客户与窗口一起工作 。
我读了几条线索,似乎它用 ssh+svn 在控制台工作。但我正在努力让这个假想在日蚀中运行。
有线索吗?
菲利普
我需要设置日蚀,以便能连接到 SVN, 检查项目或文件到远程位置。 远程位置以Linux为基础, 客户与窗口一起工作 。
我读了几条线索,似乎它用 ssh+svn 在控制台工作。但我正在努力让这个假想在日蚀中运行。
有线索吗?
菲利普
你的问题听起来好像你试图解决一些我们还不知道的问题。所以我在这里略作猜测,如果问题表明我错了,我会改变答案。
下面是可能对你有用的可能解决办法的草图。
ssh <user-id>@<ip-of-linux-server> <path to eclipse> -display $DISPLAY
有两个变式,两者都有价值:
最简单的方式是挂载服务器的文件系统, 这样您就可以通过不同的驱动器来访问本地 。 询问您的系统管理员如何完成 。
这是正常的操作方式。 按常态安装 Subversion 插件的剪贴板插件, 从仓库取出, 本地工作( 甚至断开), 执行您的更改 。
然后,您可以通过在服务器上进行检查测试,在那里建立系统,在那里进行单位测试和集成测试。
我喜欢在服务器上使用剪贴板的解决方案, 所以您可以使用服务器上的所有可用设备, Linux 下的剪贴板和 Windows 下完全一样。 您在测试之间没有任何步骤, 一切都在本地完成( 在服务器上 ) 。
另见下列问题(和答案):
PS:我忘记了:我认为 svn+ssh
只是不同的 Subversion 协议来进行校验、更新和承诺。 使用协议( file://
, svn://
, /code > 或甚至
https://
)。
I have a svn repo with various apps as subdirectory of a single svn repo. That worked because I could have checked out a partial, repo. As I cant do that with git obviously I need multiple repos. I ...
I ve recently started working on various C# projects in Visual Studio as part of a plan for a large scale system that will be used to replace our current system that s built from a cobbling-together ...
I m trying to commit some work, but svn always fails and tells me that a file I modified is out of date. I tried updating first, that doesn t work. Cleanup doesn t work. If I revert the file, copy my ...
我制作了一个外事文件,将印刷成文件,以了解它收到的第一和第二个论点。
I am using SVN+SSH to check out a working copy of repository from an SVN server on which all developers are members of a developer group and have full read/write permissions on the repository ...
A subversion repository contains the html, latex and man directories that doxygen generates from the source code. Even for small source code changes, new files are being generated with random names ...
So, I have an asp.net mvc app that is being worked on by multiple developers in differing capacities. This is our first time working on a mvc app and my first time working with .NET. Our app does not ...
Is there a way to search for a file in a subversion repository? Something similar to Unix find command, with which I can find the location of a file in a repository. I know there is svn list, but ...