svn

svn to perforce migration

懵懂的女人 提交于 2019-12-22 08:50:07
问题 I am looking at migrating our svn code base to perforce. Looking at google search results, I did find 2 tools which do the same P4Convert ftp://ftp.perforce.com/pub/perforce/tools/p4convert/docs/index.html SVN2P4 http://public.perforce.com/wiki/SVN2P4 Both these tools seems to be from the Perforce website. But I couldn't find pros and cons of using one tool vs the other. We also need to migrate the svn history to perforce. Is this possible using any of these tools ? 回答1: I'd recommend trying

TortoiseSvn error : the same name as the administrative directory

左心房为你撑大大i 提交于 2019-12-22 08:35:28
问题 I am working with TortoiseSVN. I've performed a checkout to an empty folder. Some files get transferred but then, at some point I receive the following error: Error: Failed to add directory 'D:\code\Website\ClientBin_svn': object of Error: the same name as the administrative directory I tried deleting the folder and checking out the project to a different directory. It doesn't work. When I try to check out the project on a different computer on a different lan it works fine. Any ideas? Thanks

Using SVN alone or in small workgroups - workflow approach?

本小妞迷上赌 提交于 2019-12-22 08:24:17
问题 I have spent some months working on a web application and we're come close to production stage. It's soon time to expand the development group with 1-3 people on this project. I have not too much experience on working with SVN, but It's obviously the choice for a big part of the larger companies out there, so I am guessing that the pros of SVN without a doubt outweights the time spent on commit/check ins / check outs etc. The workflow seems to become a bit more complicated with SVN, and even

How to check out a deleted project from an SVN on the command line

北慕城南 提交于 2019-12-22 08:23:51
问题 I'm trying to checkout a project that was deleted from my SVN in revision 401. The project is now defunct and had been completely replaced with a rewrite of the code, but I'd like to do a checkout so that I can refer back to small pieces of the old code while working on the rewrite. As far as I can tell, this should be as simple as checking out the old path and the last good revision (400). But when I try this I get an error, because it's trying to use the latest revision: C:\Users\couling

Fixing the Subversion user does not own lock on path error

谁说胖子不能爱 提交于 2019-12-22 08:18:50
问题 I am trying to delete a folder within my Subversion repository. My TortoiseSVN client gives me the following error message when I try to commit this change: Commit Failed (details follow): User {username} does not own lock on {path} page {filename} currently locked by {another user} If you want to break the lock, use the 'Check for modifications' dialog. I do want to break the lock and delete the folder, but I can't see an obvious way to do it from the Check for Modifications folder. Does

Unable to open repository error on Windows XP

谁说我不能喝 提交于 2019-12-22 08:18:31
问题 I'm trying to commit to my local SVN which has been working just fine, but today its giving this error: Unable to open repository 'file:///C:/wamp/www/svns/[myproject]/[dir]/[subdir]' What could be the problem? Edit: full error: Commit failed (details follow): Unable to open an ra_local session to URL Unable to open repository 'file:///C:/wamp/www/svns/[myproject]/[dir]/[subdir]' Second Edit: Here is the TortoiseSVN and SVN client info: TortoiseSVN 1.5.7, Build 15182 - 32 Bit , 2009/01/24 22

How to list locally-modified/unversioned files using svnkit?

﹥>﹥吖頭↗ 提交于 2019-12-22 08:14:38
问题 I'm writing a piece of code that, once executed anywhere inside an SVN working copy, locates the root: File workingDirectory = new File(".").getCanonicalFile(); File wcRoot = SVNWCUtil.getWorkingCopyRoot(workingDirectory, true); gets the repository url given this root, builds an SVNClientManager given this info and now I'm stuck at how to get a list of anything in the working copy that is not in the repository - this includes locally-modified files, unresolved merges, unversioned files and I

Configuring Subversion to use system users/passwords

送分小仙女□ 提交于 2019-12-22 08:14:30
问题 I'm using Subversion 1.6.1 with Apache, on a Linux machine. The server is running over http, not https. I want to allow people to authenticate using the same login/password that they use to log into the machine via SSH. The SVN manual only explains how to use HTTP Basic Auth and Digest authentication. But with these approaches, I need to maintain a separate list of users, and they can't change their own passwords. I'd prefer to just use the system's users. How do I do this? Is this wise? 回答1:

How to add tags/trunk/branches to established SVN repo?

落爺英雄遲暮 提交于 2019-12-22 08:08:07
问题 Lets say you have an established SVN repository with many hundreds of revisions and has been around for upwards of a year. The repository does not have the standard tags, trunk and branches at the top level. Instead it just goes straight into the code. Is there a way to add in tags , trunk and branches to the repository on the top level without just checking out the entire repository, altering the directory structure and then committing? Is there anyway to add it in recursively so that if you

While building a git project from jenkins it shows an error like couldn't find any revision to build

我只是一个虾纸丫 提交于 2019-12-22 08:06:38
问题 While trying to build a git project through jenkins it gives an error 'ERROR: Couldn't find any revision to build. Verify the repository and branch configuration for this job. Finished: FAILURE' What does this error means and what should I do to remove it? 回答1: I confirm: an empty repo has no HEAD, and no branch. I mention this in "Why do I need to explicitly push a new branch?" That means Jenkins, once the repo is cloned won't be able to checkout a branch (since there is none yet). 来源: https