svn

nirvdrum svn2git fetch from interrupted clone

匆匆过客 提交于 2019-12-23 03:43:27
问题 I am using the below svn2git tool to migrate the repo. I have initiated the clone process and got interrupted due to network connectivity. svn2git svn://repo/repo-name --tags tags --trunk trunk --branches branches --authors "~\authors.txt" https://github.com/nirvdrum/svn2git Is there a way to restart the clone process from where it got interrupted? I have executed the above command again and got the below error message. In Pro Git, I think we can restart the clone using git svn fetch . Is

SVNAdmin Create Repository URL not working

时光怂恿深爱的人放手 提交于 2019-12-23 03:35:34
问题 I logged in via ssh and executed the following commands: -bash-3.00$ svnadmin create /code/svn/Projects/myproject -bash-3.00$ chmod -R g+w /code/svn/Projects/myproject -bash-3.00$ chown -R :eng /code/svn/Projects/myproject However I cannot connect to the repository url: svn+ssh://hostname.com/code/svn/Projects/myproject I can connect perfectly fine to all the other repositories under Projects. I also did mkdir trunk and put a dummy file under trunk. Am I missing some step to make this

svn merge : Tree conflict weird

梦想与她 提交于 2019-12-23 03:17:12
问题 I am getting Tree conflict in SVN. It's weird! I have standard Trunk, Branches, Tags structure, and follow multiple team model. Branch1, Branch2 are created form Trunk and active parallely Steps followed: 1. Branch1 Work : newfile.c added and committed in Branch1 2. Merge : From Branch1 -> Trunk (successful; file added in trunk) 3. Merge : Down-merge from Trunk -> Branch2. (successful; file added in Branch2) 4. Branch2 Work : Perform regular Branch2 work and commit. 5. Merge : From Branch2 to

svn 提交 commit慢

…衆ロ難τιáo~ 提交于 2019-12-23 03:12:31
又修改了一下,上一个方法有问题  #!/bin/bash ###ubuntu下注意要用bash哦,不然for循环总提示'bad loop....' export LC_CTYPE=en_US.UTF-8 #语言支持 SVN_PATH=/usr/bin/svn TEMP_FILE= /var/svn.log changed=$(svnlook changed -r $REV $REPOS) RMF=`rm -f $TEMP_FILE ` echo "$changed" >> $TEMP_FILE num=`wc -l $TEMP_FILE | awk '{print $1}'` for((b=1;b<=$num;b++));do LINE_FILE=`awk "NR==$b" $TEMP_FILE | awk '{print $2}'` $SVN_PATH update /var/www/$LINE_FILE --username svn_user --password 123456 --no-auth-cache ###$LINE_FILE,要注意路径 done    说下基本思路: 因为SVN每次有操作时,会有记录列表,比如: U file1 //更新文件了 D file2 //删除文件了 .... 所以,把SVN操作的文件列表写到文件中,然后用shell取出每一行的文件

Use Xcode 4 subversion integration with custom port?

假装没事ソ 提交于 2019-12-23 03:12:18
问题 I have to connect to my workplace's subversion. The ip is open on a specific port. I have tried to connect with Tortoise from my Win 7 laptop and it works just fine, so I guess the subversion server and repository is all right. When ever I insert the IP to the subversion server the Repository-wizard in Xcode 4 says it can connect (to the server). But when ever I put the custom port number after with ":" between it cant checkout from subversion. The url I want to connect to is: xxx.xxx.xxx.xxx

How to list switched svn directories recursively in a working copy?

我只是一个虾纸丫 提交于 2019-12-23 03:12:12
问题 I have checked out a working copy from a repository and switched some directories to a different URL but on the same repo (same host and svn server). How could I list these switched directories? We use many switching for internal purposes and it would help to easily list all these in a working copy, until this quick-and-dirty usage of switch is eliminated. 回答1: (1) The answer provided by @ks1322 is concise and it works fine except for one minor tweak: one should use "^URL" instead of just

Use Xcode 4 subversion integration with custom port?

本小妞迷上赌 提交于 2019-12-23 03:12:02
问题 I have to connect to my workplace's subversion. The ip is open on a specific port. I have tried to connect with Tortoise from my Win 7 laptop and it works just fine, so I guess the subversion server and repository is all right. When ever I insert the IP to the subversion server the Repository-wizard in Xcode 4 says it can connect (to the server). But when ever I put the custom port number after with ":" between it cant checkout from subversion. The url I want to connect to is: xxx.xxx.xxx.xxx

“spawn ENOENT” error while connecting to svn from javascript

大城市里の小女人 提交于 2019-12-23 02:30:12
问题 I'm developing a web server that should be able to connect to svn, gather and process data like change logs. I've found an npm module for node.js that is called 'svn-spawn'. I have a local checkout of a project, located in the folder 'D:\Projects\TankBattles'. Everything looks good, but when I tried to get logs I received an error " spawn ENOENT " . Could you help me to resolve the error. I'm on Windows 8 x64. var q = require('q'); var SVNClient = require('svn-spawn'); var client = new

Getting “Unable to connect to a repository” error in CodePlex with TortoiseSVN

梦想的初衷 提交于 2019-12-23 02:04:37
问题 I just created a project over at codeplex and tried committing the sourcecode (so my project can be available publicly). TortoiseSVN just doesn't work with CodePlex anymore it seems. And codeplex doesn't let you change source uploading options without contacting them first. The errors in get when I try to checkout are: Unable to connect to a repository at URL 'http://onthefly.codeplex.com' The OPTIONS request returned invalid XML in the response: XML parse error at line 1: no element found

How to find svn project author after migrate the project from svn to git?

给你一囗甜甜゛ 提交于 2019-12-23 01:55:25
问题 There are some tar.gz file in a project migrated from svn to git , and i should check who and when this tar.gz file added . For there are some of them were added after the project migrated from svn to git , and i can easy to check author and data by using git log *.tar.gz . But some added before the project migrated and when i use git log .tar.gz , the author and date was who pushed this project to git rather than real author. Are there any way i can check the real author of this files? 回答1: