svn

How to change svn commit message

I wrote a script which can auto commit in every 10 minutes. But it's commit message always same ("Code saved"). But i want to change some of them which are milestone. This is my auto commit script: cd c:\inetpub\wwwroot\siteCodes svn commit -m "Code Saved" How can i write a script which can give me a chance to write revision number a...

Can you commit an existing working copy to a new branch using TortoiseSVN?

I've got a working copy that I checkout of the trunk and I have made quite a few changes and would prefer to commit back to a branch instead of the trunk (from which is was checked out from). Is this possible and how can I do this using TortoiseSVN? ...

frequently merge changes between branch and trunk?

My team and I are using svn branches for the first time. Before, we use to work only from the trunk. Over the past 2 weeks, we've been refactoring and developing new code against our branch. But during that time, another developer has been making bug fixes to code in the trunk and deploying it to the production server. We would like...

How to do svn ignore on a single file?

I know it's a basic question but I've tried every combination of propedit propset, etc. In an existing project, there's a file (let's call it 'error.log) I want to ignore for all future commits. What's the command-line syntax to do so? ...

In Subversion, I know when a file was added, what's the quickest way to find out when it was deleted?

OK, so suppose I know I added file "foo.txt" to my Subversion repository at revision 500. So I can do a svn log -v http://svnrepo/path/foo.txt@500, and that shows all the files added at the same time. What's the fastest way to find when the file was deleted after it was added? I tried svn log -r500:HEAD -v http://svnrepo/path/foo.txt@...

Xcode & GitHub & SVN

Dear all, I was wondering if anyone has played around with GitHub's new support for SVN? I would really like to try this out with Xcode if anyone has could they point me in the right direction on how to setup Xcode SVN etc. Regards Lyon J Till ...

How to diff custom file list with WinMerge

Hello, I have a code directory structure, which is this: modudle1 trunk pom.xml branches 1.1 pom.xml modudle2 trunk pom.xml submodule-2.1 pom.xml submodule-2.2 pom.xml branches 1.1 pom.xml submodule-2.1 pom.xml submodule-2.2...

Switching branches using Ankh, error: "the working copy lock appears to be broken" VS 2008

As title says. Current working copy is fully committed, i go to Subversion > Switch, change the url from the current branch to the trunk, receive a popup that says Working copy not locked The working copy lock appears to be broken Any ideas why? ...

find svn revision by removed text

Is there a way to find an SVN revision by searching for a text string that got removed in the file? I know the exact text to search for and which file to look in, but there are hundreds of revisions. ...

Check for modification failure in content Integration using VisualSVN Server and Cruisecontrol.net

I am using CruiseControl.net for continous integration. I've created a repository for my project using VisualSvn server (uses Windows Authentication). Both the servers are hosted in the same system (Os-Microsoft Windows Server 2003 sp2). When i force build the project using CruiseControl.net "Failed task(s): Svn: CheckForModifications" ...

Do I need the bin\debug\appName.vshost.exe and appName.vshost.manifest in my SVN code repository?

I am building an application which is based on a sample application, written in C# on .NET 2, and is built on VS2008. This application is mostly a wrapper for a COM application. However I compile it in .NET 3.5. The sample application came with the following files in it's bin\debug: appName.vshost.exe appName.vshost.exe.manifest ...

bash completion for Subversion

I've tried to load bash_completion in my bash (3.2.25), it does not work. No message etc. I've used the following in my .bashrc if [ -f ~/.bash_completion ]; then . ~/.bash_completion fi I also tried to use .bash_profile instead, but with the same result. So the problem is why does it not work? Any idea? Hints? ...

Clever way to add files to changeset after commit?

It sometimes happens to me that I forget to include a file in a changeset (i.e. a commit of a number of changed files that belong together, e.g. "Fixes bug #45") I will usually just make a second commit with the same commit message. Is there a clever and simple way to add the "latecomer" to the first commit somehow? Without svn dumping...

SVN change property in pre-commit

I want to have a pre-commit hook check if the current commit is a tag, and if so, check for any svn:externals properties and change them to have revisions if they do not. I have a good idea of how to grep for if they are tags or not, but getting and changing the properties is proving challenging. ...

What ASP.NET MVC project files should I not add to Subversion

this is likely a naive question, but I want to do this right the first time. I have a MVC solution which has the following: Data project - C# Services project - C# MVC Web Project - ASP.NET MVC Test Project Currently, I am using the MVC2 source as a means to debug my own code. I do not plan on checking that in, but I realize on...

Why do I need to commit ignores under TortoiseSVN?

When I select ignore on a files under version control it marks the parent directory as changes, then when I then do a commit, it checks in svn:ignore property to the repository, resulting in another revision. Why do I need to commit the svn:ignore property? Is this a TortoiseSVN issue or just the way SVN works? ...

How to find out when each user's last commit was to subversion?

I have a repository that is running subversion. Some users have not been committing regularly. I'd like to send out a weekly reminder to those that have not committed during the last week. Is there a way to determine when each users last submit date was? ...

Minimum requirements to use Indefero + SVN

Hey everyone, I made sure there wasn't a similar discussion before posting but forgive me if I am mistaken. Question: Can I use Indefero - http://www.indefero.net/ - with SVN on a linux server if I do not have any sort of web interface installed for Apache? Instead, I want to use Indefero with SVN by just using the svnserve server. Fr...

How to upgrade a 1.4.3 TortoiseSVN-created repository to 1.6.x?

A few years ago, TortoiseSVN 1.4.3 was deployed to our software development team and we are now looking at upgrading the client to the latest 1.6.x version. I had hoped this upgrade would be transparent with the additional features and modifications being client-side. For the most part, this was true except for a very important feature...

Reverting after a merge, bad idea?

Hi, I'm a newcomer to subversion. Recently, I've done some development in two different branches, where one of the branches was a branch of the other branch. I've merged down some changes from the first branch down to the trunk. However, when trying to merge down changes from the other branch to trunk, everything went haywire. That is, ...