Eclipse的SVN在Share Project时无法将webapp目录提交是怎么回事?

2019-03-25 13:37|来源: 网路

Eclipse的SVN在Share Project时无法将webapp目录提交是怎么回事?

相关问答

更多
  • Team->Share project正是您需要做的。 从列表中选择SVN ,然后单击“下一步” 。 Subclipse会注意到.svn目录的存在,将要求您确认信息正确,并将项目与子文件相关联。 Team->Share project is exactly what you need to do. Select SVN from the list, then click "Next". Subclipse will notice the presence of .svn directories that w ...
  • Unix和Windows系统中的新行符号是不同的。 您必须签入您喜欢使用的项目首选项: 此外,问题可能在于编码,检查您现在使用的内容,或者在相同的项目首选项上手动将其设置为UTF-8。 The new line symbol in Unix and Windows system are different. You must check in project preferences, which you prefer to use: Also, the problem may be in encoding, ...
  • 对于你的第二个问题: svn commit获取本地工作副本的路径。 不需要存储库(事实上,不允许),因为您的工作副本始终与相同的存储库URL相关联。 例如,如果您在C:\ Temp \ MyProject中有一个工作副本,通过svn checkout http://example.com/svn/project C:\Temp\MyProject ,那么您将使用svn commit C:\Temp\MyProject提交任何更改svn commit C:\Temp\MyProject 。 更好的是,将目录更 ...
  • 通过外部脚本完成这项工作要好得多,但如果必须在Eclipse中完成,请使用Eclipse Monkey插件,它允许您在Eclipse中编写脚本。 不幸的是,Eclipse猴子的信息不多,但这里有一个介绍: http://eclipse.dzone.com/news/introduction-scripting-eclipse You're much better off having this done by an external script, but if you have to do it in E ...
  • 签入所有文件 (包括隐藏文件或文件夹),/ bin或/ gen除外。 您的Eclipse项目不完整,可能在2台计算机上使用不同的设置(例如,一台机器编译兼容Java 5,一台机器兼容Java 6)。 至少JDT,ADT和其他重要插件都避免在那里存储机器特定属性或绝对路径,因此您可以毫无问题地传输设置。 Check in all files (including hidden files or folders), except for /bin or /gen. Your Eclipse projects a ...
  • 我希望这个解决方案可以帮助我,因为它帮助了我。 我认为您的问题与无与伦比的客户端/服务器版本有关。 霓虹灯颠覆版本是4,相关的svn连接器是1.8。 但你可能需要一个svn连接器1.7,就像我的情况一样。 尝试后续步骤,让我知道它是否有效。 否则,让我知道你遇到麻烦的地方。 转到帮助>安装详细信息>通过“svn”过滤>卸载与颠覆,subclipse和svn连接器相关的所有内容 重启日食 要帮助>安装新软件>使用>使用此URL中以前的主要颠覆版本: http : //download.eclipse.org/ ...
  • 右键单击Project并选择Run as > Java Application 。 Eclipse应该搜索项目以查找带有main()方法的类。 这将为您创建一个启动配置,然后您可以根据需要进行编辑和修改。 Right-click on the Project and select Run as > Java Application. Eclipse should search through the project to find a class with a main() method. That wil ...
  • 将项目添加到工作区,就像任何其他项目一样,然后使用共享。 我知道你说你不想这么做,但是尽管听起来它会像SVN中的一个新项目那样分享它,但在这种情况下项目已经有了SVN元数据。 it is NOT possible! -.-
  • 要使用SVN 1.7,您需要通过将以下内容添加到更新站点列表来安装Subclipse 1.8: http://subclipse.tigris.org/update_1.8.x : http://subclipse.tigris.org/update_1.8.x To use SVN 1.7 you will need to install Subclipse 1.8 by adding the following to your list of Update Sites: http://subclipse ...
  • 创建一个新的工作空间(例如通过使用命令行参数-data )并将您的项目从旧项目导入新工作空间。 Create a new workspace (e. g. by using the command line argument -data) and import your project(s) from the old into the new workspace.