svn

Download SVN for windows

Every now and then I have a problem with SVN inside eclipse folder gets locked, I have to check out projects few times update and stuff like that . is there a SVN that I can use to commit files directly from console or windows folders? ...

Subversion lock-modify-unlock solution for SSIS .dtsx

Hello! I wonder how i could set up a developer enviroment for SSIS,.dtsx packages in Subversion? I read about Subversion "svn:needs-lock" property and the ability to set auto-props in a subversion repository by setting "enable-auto-props = yes" in the repository config file. The "svn:needs-lock" property is neccesary when working with...

How do I install Perl's SVN::Client?

Hi, I want to use the SVN::Client cpan module to check out code from a repository. But how to install and use this module? The documentation is kind of no existing. I have tried install the Alien::SVN module both through cpan and build it myself. And it seems to install okay. No error messages, and when i go into cpan again and do the...

svn track brand new code base

I'm at a company, we keep recieviing new codebases from a third party vendor. we'd like to track the changes in subversion. is there a way to replace a branch with the new code and track the changes? currently we just delete all files in the branch, and then add the new files and commit. we'd like to track the files, but I havn't foun...

Backing up locally modified and new source files

I'm wondering how other programmers are backing up changes that are not under source control yet, be it new files or modified ones. I'm mostly referring to medium size jobs - hardly worth the effort of making a private branch, but taking more than a day to complete. This is not a vendor-specific question - I'd like to see if various pro...

java: generating a properties file that contains the svn version number

I want to generate a properties file, from my ant script, that contains the svn version number of my project. I'm 1/3 of the way done: To do this I need to: use svnversion 1a. define the svn task 1b. use <svn><wcVersion></svn> put the result in a .properties file that ends up in my build path I'm a bit lost with 1a and 2. any idea...

svn post-commit script runs from command line, but not when commiting file(s) to svn

Hi, I have a post-commit hook in svn that runs fine from the command line when I run env - ./foo.sh /path/to/svn/repos/ 12345 but when it the script is called from svn it does not appear to work. What I am basically doing is checking the committed files and if a particular file is modified, i do an svn export of it to a network sha...

Scalable (half-million files) version control system

We use SVN for our source-code revision control and are experimenting using it for non-source-code files. We are working with a large set (300-500k) of short (1-4kB) text files that will be updated on a regular basis and need to version control it. We tried using SVN in flat-file mode and it is struggling to handle the first commit (5...

SVN is not recognizing the changed files

I had made changes in a folder called "branch", and now that its working I want to move all the src folder to the folder "trunk". But by copying src from local branch, pasting on local trunk and commiting the SVN commits nothing. Its like nothing had changed. Any idea how to commit this? Related question: http://stackoverflow.com/questi...

Using your own domain name with Assembla

I'm looking into using Assembla for hosted SVN, is it possible to have the SVN url be a company subdomain instead of using the Assembla domain? ...

Problem in using svn and buildix

Hi all I ran into a problem in using svn and buildix. I have a project created in svn as well as in cruise control which was working fine. Since yesterday whenever I commit changes into svn they are successfully commited but buildix is not able to pick up those changes, Normally I used to run 'svn update' whenever this problem occurs ...

why use branches in svn?

i know that you could organize your files according to this structure in svn: trunk branches tags that you copy the trunk to a folder in branches if you want to have a seperate development line. later on you merge this branch back to trunk. but i wonder why me and my group should do this. why should one copy the trunk to a branch and ...

GUI softwares/netbeans-plugins for creating branches/tags in svn?

hi i wonder if there are some GUI softwares to administrate a svn repo? or do you actually have to log into the ubuntu server with ssh and use all the svn commands to copy the trunk to a branch, merge the data back and forth, copy to a tag, delete and so on. im using netbeans in mac. i think it's only handling the communication between...

graphical svn client for creating branches, merging branches etc?

hi i wonder if there are some GUI softwares to administrate a svn repo? or do you actually have to log into the ubuntu server with ssh and use all the svn commands to copy the trunk to a branch, merge the data back and forth, copy to a tag, delete and so on... im using netbeans in mac. i think it's only handling the communication betwe...

commit/update/merge commands in svn

i want to know exactly when i should use either of commit, update and merge command in svn. after i've checked out a project and altered the code, should i use update, commit or merge to stay in sync? correct me if im wrong: update = all changes in the repo is copied to your local project. commit = all changes in your local project i...

Hudson leaving open sessions

Does anyone have any experiences with Hudson leaving sessions open to a Subversion server? We've been increasing our job list and got ~50 which poll the SCM regularly. It's been working fine but recently our SCM has started acting up by refusing handshakes, which we suspect is down to the sessions left open by Hudson. Last count there ...

VisualSVN and VS2008 integration - moving files

If I drag and drop tracked .cs files to new folders in VS2008 with VisualSVN what message should I see when I commit the .cs file? I see added (+) shouldn't I see a "move"? I'm asking because I'm getting ready to do a major refactoring (including moving lots of files) and I don't want to lose my version history on these files. Note: I'...

fabric and svn password

Assuming that I cannot run something like this with Fabric: run("svn update --password 'password' .") how's the proper way to pass to Fabric the password for the remote interactive command line? The problem is that the repo is checked out as svn+ssh and I don't have a http/https/svn option ...

Will Distributed Version Control Systems survive?

I am personally a SVN lover, but am starting to fall prey to the buzz that is surrounding DVCS. SVN is free, and time tested, is DVCS the new SVN? I am also looking for which DVCS server will win out GIT or Mercurial? ...

Complex reporting on subversion (possibly Export Subversion log into database for reporting)

What is the best way to do complex reporting on subversion logs like the following for each file? file, directory, last revision date, previous revision date(where revision date is at least 30 older than last), days diff(between revision dates) Since Subversion allows on revision to change multiple files I assume svn log needs to be run...