svn

How can I delete all unversioned/ignored files/folders in my working copy?

If I have a working copy of a Subversion repository, is there a way to delete all unversioned or ignored files in that working copy with a single command or tool? Essentially, I'm looking for the SVN analogue to git clean. Either a command line or GUI solution (for TortoiseSVN) would be acceptable. ...

How can I setup ANT with Subversion and ColdFusion Builder (eclipse) to check out a local build to work on?

I am not sure if there's an answer for this already -- couldn't find one for this (hopefully common) setup: I recently converted one of my ColdFusion projects to deploy via ANT. I have a local ant script that instructs a remote server to check out the code, and run the application's specific build file, remotely on the server. I hav...

Merging in git: via git-svn, says Already Up-to-date, but git-diff says there are differences

I'm using git-svn to work with a codebase and I need to merge changes in trunk to my branch. I have both branches fetched in git, and when I run git diff trunk while in my branch, I can see all the changes. When I run git merge heads/trunk, however, I get a message "Already up-to-date". It's clearly not up to date. What am I doing wr...

Cruise Control.Net best practices

I'm going to implement a CI process with CC.NET so I'm looking for best practices for CC.net implementation. I use SVN as source control and JIRA as an issue tracker (if it's a useful tip). Any recommandation or article suggestion will be appreciated. Note: I read this article by Martin Fowler. ...

How can I check my svn connection?

How can I check my svn connection? ...

java create a jar file for contrib packages in lucene

I have downloaded the source code of Apache Lucene using svn. Now I want to create a jar file for a particular java file in the contrib portion of the code. the problem is that when I do javac x.java to get a class file and package it into a jar file using jar cf jarfile.jar x.class the package hierarchy is not preserved in the jar file...

Best client for SVN / WIndows for READ ONLY ;)?

Not interested in any source control OR shell integration. This is basically to make regular gets on certain third party archives. I would really prefer not to deal with SVN in any way in my shell or visual studio. Native / C# preferred (as i have those runtimes already installed). Anyone a recommendation under those circumstances? ...

Get the tags of a document in Subversion

I was wondering if there is a way to easily see the tags of a specific file in Subversion using the command line and/or TortoiseSVN. Most version control system allow you to see easily access the tags/labels of a file. When using TortoiseSVN I can do this when I access the "Revision Graph". This however is a operation that takes around...

Include revision or tag name on website pages (ASP.NET) when deploying with CruiseControl.net and subversion

Is it possible to include the revision number or the name of the tag used for a build on an ASP.NET website when deploying with CruiseControl.net and subversion? ...

how to solve 403 forbidden error while using svn commit first time

hellow all i am using svn for version control for an iphone application . i have created it from xcode repositories by giving url ,user name and password its authenticated .After that i have created a directory from there itself and have imported my project there. Then i have checked out to the local directory and have updated somethi...

Reverting single file in SVN to a particular revision

Hello, I have a file as shown below in an SVN repo that I would like to revert to a previous version. What is the way to do this in SVN? I want only downgrade this particular file to an older version, not the whole repo. Thanks. $ svn log myfile.py ---------------------- r179 | xx | 2010-05-10 Change 3 ---------------------- r175 | x...

svn checkout with netbeans returns an error

I have removed a data directory from my java source code. now when i try to commit source then i get the following error. org.tigris.subversion.javahl.ClientException: Working copy is corrupt Commit failed (details follow): Entry for 'directory' has no URL i get the same error when i remove a file. what is the reason. i am checking ou...

SVN problems after migration with CVS2SVN

We´ve migrated from CVS on AIX to SVN on Linux via CVS2SVN. The migration seems to have went well but when working in SVN we get a lot of Tree Conflicts that doesn´t seem to be conflicts at all? Looking at the revision graphs, one can see that the graph for e.g. trunk and a branch isn´t the same, i.e. they contain different sets of revi...

SVN Pre-commit hook for temporarly commented out code (in java)?

It just happened to me that I commented out a line of code for testing reasons and ended up checking the code back into the repository with the commented line. E.g. I set a rule for a job in Eclipse RCP on one line. While developing a new feature I commented out this one line so the rule does not get set. After a couple of hours the n...

execute build.xml with maven

Is it possible to execute build.xml script with maven? This script checksout all my projects and subprojects and I've just got used to using maven, didn't really use much of an ant before and I know ant can be used with maven so my question is how ? ...

Add a new file in Intellij doesn't add to subversion

I'm not sure what I did to cause this, but adding a new file or package in IntelliJ now doesn't add them to subversion, and I have to add them manually via right-click -> subverion -> add. Is there a setting that controls this behaviour? ...

Accessing SVN from LAN

Hi, I am running a subversion service on my localhost, I want users on the LAN to be able to access this repository without being prompted for username and password. Is there any way to do this. ...

Maven SVN checkout example

Concerning my previous question -> http://stackoverflow.com/questions/2622191/is-there-a-svn-maven , I went trough usage page -> http://maven.apache.org/scm/maven-scm-plugin/usage.html didn't found quite what I was looking for, here what I would like to do : Checkout list of projects which I specify for ex : http://mysvnurl/myproject...

Cruise Control.NET with SVN

I am trying to configure the latest version of Cruise Control with SVN and looking for the simple steps to do the same. Not able to make out much from this. Any help will be appreciated ...

How can you indicate files to ignore in svn when using git and the git-svn bridge?

There is a master subversion repository that I've cloned a git repo from. I've got a lot of ignored files in my .gitignore that I'd like the svn repository to know about. I know that I can use git svn show-ignored to pull the ignored list from subversion, but how can I do the reverse? Send a list of files to be ignored back to the svn...