svn

Getting to SVN from TeamCity using Windows Authentication

I am trying to setup TeamCity on my Windows XP machine. It is failing to get the code from subversion because of an authentication error. I have put my windows domain\user username and password into the TeamCity configuration - but it looks like it's trying basic authentication. What do I need to change? Here is the TeamCity SVN log (th...

How do I automatically update a subversion repository?

Does anybody know how I can run automatic update subversion? If anybody has a script or something like that, could you show me an example? ...

Can't share some projects with Eclipse / subversive

I just encountered a strange problem - at least strange to me. Maybe someone has a solution (or a 'lesson learned'): I recently imported some eclipse plugin projects into a workspace and wanted to put this work under version control. But this wasn't possible for three out of seven projects: the Team->Share context menu item just didn't ...

Java Class file from SVN to Tomcat on server: How to compile automatically?

I'm currently fixing a JSP project and it currently has a seemingly random collection of .class files in it's Tomcat's WEB-INF folder. As a way of simplifying this, I was planning to get .java files from these classes straight from SVN to WEB-INF folder on server and I got that to work but what would be the simplest way of compiling thes...

Command prompt not working after installing TortoiseSVN

I have just installed that latest stable release of TortoiseSVN on Windows Server 2003 and restarted the server. I can create a new repository using the right-click menu in windows explorer but using "svn" anything from the command prompt returns 'svn' is not a recognised internal or external command When I have installed TortoiseSVN p...

maintaining configuration differences between dev and live environments during deployment from SVN

We use the ExpressionEngine CMS (php) to create websites. For each site, we set up a subversion repository and commit the EE installation as well as any custom templates, images, javascript, etc. that are used. Included in the repository is the file containing all of the environment variables and the .htaccess file. We have a developmen...

Automatically switch between SVN branches of the same project

How can developers set up their environment paths when working on different SVN branches of the same project so that they don't need to setup their paths each time they switch from one branch to another? I am a Python developer and I find myself working on different branches of the same project and it's pretty ugly to export each time ...

Tips to sync up webapps and svn?

I would love to get some tips from other people that have had this problem. I'm doing front-end development on java-based apps. I have my source in one diretory, /usr/src. My projects build and deploy to Tomcat in /usr/tomcat/webapps. Since the work I'm doing is all front-end, I have to edit the deployed files in /usr/tomcat/webapps so ...

Which is the command to query a Subversion repository for all files locked by a specific user?

Which is the command to query a Subversion repository for all files checked out to locked by a specific user? ...

TortoiseSvn error : the same name as the administrative directory

Hello all, 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 check...

SVN Firefox Plugin

Is there a firefox plugin which functions as an SVN client? I have checked on the official addon website. I really do not wish to go to the trouble of installing a standalone client, so is there currently a firefox plugin or some easy way I or someone else could make one? This would be very useful to me. ...

SVN log not showing all the revisions made to a file

I've started using SVN before a few weeks. I am facing a weird problem right now. We have a file, which was added by me to the repository. Another developer checked it out yesterday, made some modifications to it, and comitted it to the repository. Today, I made some modifications to that file and comitted it to the repository. But it di...

How do I enable svn commands from any directory?

I have recently installed SVN on Windows Server 2003. I can execute svn commands in the command prompt if I am in the bin directory (program files\subversion\bin). But trying to execute commands in any other directory results in 'svn' is not recognized as an internal or external command, operable program or batch file Where am I going ...

How to set an svn repository path to a server path?

Someone on SO said setup source control, it takes 5 minutes. It's taking ages, it's fiddly and a pain in the arse! And I don't get the workflow Anyway. I have svn installed on server1. Server1 is also used to store all of our existing source code and projects, which have now been added to their respective repositories on server1. We hav...

svn switch error - is not the same repository

Hello, I have recently moved the SVN server and now i am tring to relocate the working copies from my computer to the new server. But i get the strangest error. i do : svn switch http://99.99.99.new/svn/company/project/trunk/web but i get svn: 'http://99.99.99.old/svn/company/project/trunk/web' is not the same repository as 'http://...

What is the best practice for sharing a Visual Studio Project (assembly) among solutions

Hypothetically, I have a project "MyFramework" that has a bunch of code used across a lot (12?) of solutions. Each of the solutions including "MyFramework" are in there own source control (SVN). MyFramework is strictly an internal product and doesn't have a formal release schedule. Each of the solutions are internal projects (no clien...

Subversion hook updating externals autentification error

Hello, I have a post-commit hook that is updating a working copy. In that working copy some of the files are externals witch have authentication. Is there a way to pass the login credentials to the svn update only for the externals ? Right now it does the update but because the external asks for login, it fails to update the external l...

Grouping commited files together (as a single commit) after you've already committed them to the repository in Svn?

Is it possible to group a number of commited files together (as a single commit) after you've already committed them to the repository in Svn? It seems I always forget a file or two after I've committed a bunch them (when not using subeclipse) and I was just wondering if anyone knew if this was possible or not. ...

Why does authorization fail when I commit to svn using VisualSVN?

I have setup svnserve and for now now I am testing a repository with no credentials, so in svnserve.config I have [general] # anon-access = write ### auth-access = write # use-sasl = false And restarted the service I have successfully got a working copy of a project on a seperate machine using VisualSVN and svn://server/repos howeve...

Writing a pre-commit hook using SharpSvn. Does it lack svnlook propget?

Hello all I am rewriting an older subversion precommit hook. In our company, we need to make sure that binary files are allowed on commit only if they have the property svn:needs-lock set before commit. I started writing the hook and it looks like every part of the hook works, but I cannot find how to read, if the property is set. I w...