svn

How do we count subversion commits per user

How do we count subversion commits per user ...

how to collaborate source code across multiple locations

We have a VMWare image running a gforge instance in our local network. We would like some external folks to be part of the dev process. We would like to keep this repository as the master SVN repository. What kind of options are available for sharing the code with the external resources and merging it back into our local repository. Ot...

Working with ProjectLocker

I have an account in ProjectLocker and a project in MyEclipse. How to upload this in ProjectLocker? ...

Persistent ignored file with SVN

Hi buddies. Is it possible to keep a file that is not part of the repository into the working copy? I mean, the file would be an ignored file, but also will not be eliminated by removing unversioned items. Thank you very much. EDIT: With TortoiseSVN, if you hold shift key and then right click a folder on explorer, an extended menu sho...

SVN commit failed: Directory out of date

I have a problem that seems very simple but is hard to solve. I get the mentioned error after deleting a directory. I did not find a solution yet to solve the conflict. This is how it occurs: svn add dir svn add dir/file1 svn commit svn add dir/file2 svn commit svn delete dir svn commit --> commit failed --> Directory '/dir' is out o...

Binary file lost using svn merge

I have two branch (let say branch A and branch B)in my svn repository I'm done with one of them, branch B I want to get changes of the other branch ,branch A. On both branch i have binary files,in a separated folder. When i try to get the new binary files of branch A, i get nothing, just tree conflict. I use subclipse, merge a range of ...

Cannot commit folders using Tortoise

After a big refactor involving creating new projects and moving files around between them, I am having a big problem committing a folder (and its contents) which was moved. The folder currently shows as modified (i.e. red overlay with exclamation mark). When I try to commit it, I am told I need to update the working copy first. When I...

What's the best way to version control graphical assets on Windows?

I'm a web developer / designer, and I want to be able to version control graphic files (Photoshop / Fireworks / Illustrator / Stock Photos / etc). This would normally be fine but some of the files I have tip the scales at around 800MB, which TortoiseHG chokes on. I currently have a server I put all my files on so all my computers can ac...

Bitnami Trac 0.11.6 SVN Post commit hooks failing

Hi folks. Beating my head against a wall here for a day trying to get post commit hooks work so I can add refs/ close tickets in trac from an SVN commit. I used the bitnami trac stack to install and am fairly happy with the way its setup. Every commit though gives the error svn: MERGE of "/svn/Project": 200 OK (http://10.0.0.204) ...

svn: copy branch to trunk

I have an SVN project with a branch I'm working on, and an empty trunk: myproject/ branches/ mybranch/ {there's stuff here} tags/ trunk/ How can I copy the contents of mybranch into the trunk? TortoiseSVN complains that there's already a trunk directory. I could delete the (empty) trunk from the repository and then do ...

Integrating google code SVN repository with MantisBT

I am trying to figure out how to integrate my google code repository with my mantis bug tracking system. I know google allows you to use post-commit web hooks, but I can't figure out what the exact URL should be. There is a lot of information about how to integrate the two, but they all require calling the mantis script from the shell,...

Commit to subversion on behalf of someone

Is there a way to checkin a change on behalf of someone? For example, I want to process changes through some kind of build server and then have the build server check it in for the user. Is that doable? ...

Svn pre-commit hook to disallow svn:mergeinfo on non-root directories

I would like to use a pre-commit hook that prevents developers from setting svn:mergeinfo on non-root directories. That is, I want to enforce that svn:mergeinfo can only be set on directories like "trunk" or "branches/branchName". Developers sometimes need to be "reminded" that it's not good practice to use a subdirectory of the root a...

Can I use SVN on a Linux server with Xcode?

Can I use SVN on a Linux server with Xcode? ...

Error: Retrieval of mergeinfo unsupported by 'svn://IP.Address'?

I am trying to merge a Branch to Trunk using the TSVN 'Reintegrate a branch' feature. However I get the following error. Error: Retrieval of mergeinfo unsupported by 'svn://IP.Address'? What is the reason for this error? Also is there some other way to merge the Branch to the Trunk. ...

How to solve svn --force rm .

So you have a directory with a file dir/myfile dir is inside a svn folder and you do svn add dir svn --force rm dir/.* You were trying to not add some .something files but you did it the wrong way. You now do ls and dir is no there. You have a problem. You still have a copy of myfile, so you do: mkdir newdir cd newdir cp fromsome...

Trouble installing Cutycapt on Centos

Hi all, I'm currently trying to install CutyCapt on my Centos VPS. I need this for displaying screenshots of websites in a catalogue. Regrettably there's only a Debian/Ubuntu installation guide available. It must be said, that I'm no expert at Linux or commandlines, but still decided to give the installation a go.. So far I've install...

Subversion Branch Reintegration in v1.6

Per this old thread, using svn 1.5, reintegrating a branch multiple times is problematic, and should be avoided. There has been some rumbling to the effect that, "This is a known issue, and should be fixed in svn 1.6." Does anyone know whether that was the case? Is it fixed? Can I reintegrate multiple times? ...

SVN: Differences between whole-repository updates and single-file updates?

We have a commit hook that runs an 'svn update' on a remote working copy every time a commit finishes. Users want to see committed changes immediately reflected in this remote copy. Users are extremely unhappy with the performance of running 'svn update' on the whole working copy, so I was asked to change the hook to use 'svnlook change...

Problems tagging and checking in files into cvs (Sticky tags)

Hi guys, I am having some trouble with checkout out files using a release tag and hope someone here can help. Basically my repository is structured like this module1 - src - jsp - conf module2 - src - jsp - conf A release can include changes in either module1 or module2 or both. There are several developers that could be w...