svn

Unable to convert svn repository (without trunk) to git

对着背影说爱祢 提交于 2021-01-02 05:06:30
问题 I'm trying to convert my svn repo to git, but I'm not having much success. The repository in question does not have anything like a "trunk". The layout is the following: /home/svn/ |--- /project1/ |--- /project2/ |--- /repos/project3/ And underneath those project folders are the files. No trunk, no branches, no nothing special. At the time that was all I needed, and now it's biting me in the ass. I'm following this guide: http://john.albin.net/git/convert-subversion-to-git When I run this

Unable to convert svn repository (without trunk) to git

拟墨画扇 提交于 2021-01-02 05:05:19
问题 I'm trying to convert my svn repo to git, but I'm not having much success. The repository in question does not have anything like a "trunk". The layout is the following: /home/svn/ |--- /project1/ |--- /project2/ |--- /repos/project3/ And underneath those project folders are the files. No trunk, no branches, no nothing special. At the time that was all I needed, and now it's biting me in the ass. I'm following this guide: http://john.albin.net/git/convert-subversion-to-git When I run this

Hudson+svn+ant+tomcat一键自动化部署

蓝咒 提交于 2020-12-30 11:36:38
准备工作 安装 jdk 下载 http://hudson-ci.org/ 下载 svn 下载 ant http://ant.apache.org/ 下载 tomcat Hudson 启动及插件初始化 启动 Hudson 的 war 包扔到 tomcat 里,启动 tomcat 访问 http://localhost:8080/hudson/ 出现如下界面,成功 初始化 svn 插件 初始化 Hudson SSH plugin ant 配置 Windows ANT_HOME=D:\apache-ant-1.9.4 Path 中加入如下内容 ;%ANT_HOME%\bin;%ANT_HOME%\lib; 配置成功: Ant 过程中 Java heap space 解决办法如下: ant.bat 文件中配置 jvm 内存 set ANT_OPTS=-Xms128m -Xmx256m -verbosegc set ANT_OPTS=-Xms256m -Xmx512m -verbosegc -verbosegc 可以查看 Java 使用的堆内存的情况 Linux 解压缩 apache-ant-1.9.4-bin.tar.gz tar zxvf apache-ant-1.9.4-bin.tar.gz 在 /etc/profile 配置环境变量 ANT_HOME=D:\apache-ant-1

Vaadin what to add for version-control

蹲街弑〆低调 提交于 2020-12-30 03:43:51
问题 we are using Vaadin 14. Which folders in the project should we commit to the Version-Control? The folder node_modules is very large which is very time consuming, should we commit this? 回答1: node_modules directory should not be added to version control! package.json and package-lock.json keep track of npm packages and pin their versions. You may want to add these to version control, in particular, if you added any local package directly with npm. webpack.config.js is webpack configuration. You

jquery选中单选框、复选框、下拉框

梦想的初衷 提交于 2020-12-16 13:56:17
转载自 jquery1.3中文参考 http://jquery-api-zh-cn.googlecode.com/svn/trunk/xml/jqueryapi.xml 对单选框、复选框的选中有增强 HTML 代码: select id="single"> <option>Single</option> <option>Single2</option> </select> <select id="multiple" multiple="multiple"> <option>Multiple</option> <option>Multiple2</option> <option>Multiple3</option> </select> <input type="checkbox" name="c" value="check1"/> check1 <input type="checkbox" name="c" value="check2"/> check2 <input type="radio" name="r" value="radio1"/> radio1 <input type="radio" name="r" value="radio2"/> radio2 jQuery 代码: $("#single").val("Single2"); $("#multiple").val([

Tortoise SVN log “URL .. doesn't exist”

和自甴很熟 提交于 2020-12-12 01:50:34
问题 I'm using Windows 7 Professional and Tortoise SVN 1.9.4. So I right click on a directory under SVN control and choose Show SVN Log . Multiple revisions are shown. I select multiple contiguous revisions, none of these rename or move any file or directory. The third area of the log window shows me the files affected by the selected range. I double-click on a file to view the differences. Instead of seeing differences I instead see a popup error: "Subversion reported an error. URL ...:/

Jenkins Subversion Checkout Failing - “E175002: CRLF expected at end of chunk: -1/-1”

末鹿安然 提交于 2020-12-11 10:08:21
问题 I have a Jenkins v2.107.2 instance (running as a Windows service) which is checking out several projects via Subversion from a Visual SVN Server (on a seperate Windows PC). One of the projects (the largest - ~2.7GB) is occasionally, but then consistently failing with the following error when attempting to checkout: ERROR: Failed to check out https://example.com/myrepo org.tmatesoft.svn.core.SVNException: svn: E175002: CRLF expected at end of chunk: -1/-1 svn: E175002: REPORT request failed on

Jenkins Subversion Checkout Failing - “E175002: CRLF expected at end of chunk: -1/-1”

妖精的绣舞 提交于 2020-12-11 10:01:30
问题 I have a Jenkins v2.107.2 instance (running as a Windows service) which is checking out several projects via Subversion from a Visual SVN Server (on a seperate Windows PC). One of the projects (the largest - ~2.7GB) is occasionally, but then consistently failing with the following error when attempting to checkout: ERROR: Failed to check out https://example.com/myrepo org.tmatesoft.svn.core.SVNException: svn: E175002: CRLF expected at end of chunk: -1/-1 svn: E175002: REPORT request failed on

Missing TortoiseSVN context menu after upgrading to 1.14.0

倖福魔咒の 提交于 2020-12-08 06:23:31
问题 TortoiseSVN does not work after upgrading to version 1.14.0. Its context menu is missing in Windows after upgrading to version 1.14.0, and the following errors occur: TortoiseProc.exe - System Error The code execution cannot proceed because libapr_tsvn.dll was not found. Reinstalling the program may fix this problem. TortoiseProc.exe - System Error The code execution cannot proceed because libaprutil_tsvn.dll was not found. Reinstalling the program may fix this problem. 回答1: The problem was

is there a subversion web client that I can use

谁说胖子不能爱 提交于 2020-11-28 10:24:05
问题 I want to install a svn web client on Linux (preferred) or Windows. I need only read-only capabilities (no commit required) and I want to be able to compare revisions using diff. my svn server is on another machine so the web server needs to access it over http. It should also be free... Do you know any such web client? 回答1: There's websvn (websvnphp.github.io) and viewcvs (viewvc.org) 回答2: I believe VisualSVN provides what your looking for: http://www.visualsvn.com/ 回答3: Trac does a pretty