svn

Using git-svn with slightly strange svn layout

Hi guys, I'm doing an internship and they are using SVN (although there has been some discussion of moving to hg or git but that's not in the immediate future). I like git so I would like to use git-svn to interact with the svn repository and be able to do local commits and branches and stuff like that (rebasing before committing to svn ...

How to concatenate all commit messages from subversion into one text file with no metadata?

I would like to take all the commit messages in my subversion log and just concatenate them into one text file, preferably using the svn command line on windows. Each commit message has this format: - r1 message - r1 message - r1 message What I would like is something like: - r1 message - r1 message - r2 message - r2 message - r3 mes...

PHP remote project and subversion

I am working on a live remote php project in eclipse. ie, I just connect the the project using RSE edit the files and save. I have recently setup subeclipse and am wondering if there is an way to add my php files to a subversion project while still working on the live project? Or maybe there is a better way to do this and get the same...

Git to svn: Adding commit date to log messages

How should I do to have the author (or committer) name/date added to the log message when "dcommitting" to svn? For example, if the log message in Git is: This is a nice modif I'd like to have the message in svn be something like: This is a nice modif ----- Author: John Doo <[email protected]> 2010-06-10 12:38:22 Committer: Nice...

How to compare source in Git repository between source in SVN repository

Hi, how do I compare code in two different repository types? The Git repository was not taken from the SVN repository. Thanks! ...

svn:ignore for a file already commited in subclipse

I am trying to ignore some files that I have already commited to the repository in subclipse I followed this from http://stackoverflow.com/questions/1066809/subclipse-svnignore You can't svn:ignore a file that is already commited to repository. So you must: Delete it from the repository Recreate it in Eclipse Set ...

SVN Can't connect to host

We have a SVN repository setup on a remote host server. We have a brand new Dev server which eventually I will be setting up our repository on there, but for now I am trying to export a project onto the dev server from SVN. When I try to do it, I get svn: Can't connect to host 'website.com': Connection timed out. I can connect fine from...

Connecting to Subversion hosted on a Windows XP machine?

I have successfully installed SVN on a Windows XP machine and can connect to it locally. But I do not know how to connect to it via another machine on the network. The project is at C:\svn\project And I connect to it via Tortoise locally and want to remotely via another machine - how do I do it? Thank you. ...

Where are AnkhSVN CA certificates stored?

My Subversion repository is available over HTTPS. I've got a self-signed CA root certificate, and the server uses a certificate signed with that. The CA root certificate is stored in Trusted Root Certification Authorities, which means that (for example) Internet Explorer recognises it. AnkhSVN, on the other hand, reports "There are som...

Can TeamCity add the project output to svn

Can I get TeamCity to add the project binaries to a svn repository after they have been built? If I need a script, how do I kick it off after a successful build. ...

How to create a patch in TortoiseSVN while no file is checked out?

Hi, I know if some files are checked out (modified) then I could right click on containing folder, then select "create patch". After then I will see list of all checked out files. So I could include them in the patch. But when no file is checked out, aka everything is committed, create patch window is empty. So the question is how can I...

Subclipse description of each menu item

Is there a description of each of the menu items in the Team menu for Subclipse somewhere? The are still a number of items that I don't understand. ...

advice on setting up SVN

I'm trying to setup an svn server. I maintain couple of websites based on asp. There are three environments currently. Development: Any new modules/enhancements will be done in this environment Staging: Mirror of production Production: The public facing website. Currently when there's an update to the website, this is what we do ...

How do I shorten the repository URL using svn+ssh similar to svnserve -r?

In the svnbook, it shows you how to shorten the URL to your repositories when using svnserve as a daemon, using -r like: svnserve -d -r /usr/local/repositories That way, you can refer to the repository you need right after the hostname in the URL without revealing any of the local path (which is /usr/local/repositories/project1): svn...

Managing Team Development on Shared Website

I need to know the best way to manage team web-development on a shared server (hostgator). I have done some individual web development on a shared server in the past, and I have always setup SVN through SSH to have a pretty-nice development workflow (version control, quick-commits, work though eclipse/subclipse, etc). However, I also kn...

Find revision number for a tag

Perusing http://svn.osafoundation.org/chandler/tags/ I wanted to get the revision number for these tags. How can I do it? The only thing I can see is the most recent revision number. ...

post commit hook fail

I have Master/Slave setup using Win2k8R with SVN 1.6.9 and using TortoiseSVN 1.6.7. The access is through Apache and using http. Everything works but when I commit I get the following message: Error: post-commit hook failed (exit code 1) with output: Error: The process cannot access the file because it is being used by another process. ...

On Windows, can we put different folders in 1 SVN repository?

Related Question: On Windows, can we put different folders in 1 Git or Mercurial (hg) repository? On Windows, can we put different folders in 1 SVN repository? Such as putting c:\ror c:\software projects\ruby c:\js test d:\peter_website all in 1 SVN repository called code ? ...

svn import, dont modify revision OR modify the list of files in a transaction

Hi Ive gained so much knowledge/insight from this site in the past few years, now im actually hoping to get some enlightenment. The scenario is as follows: You have the general structure of the repo (trunk,branches,tags) but added to the layout you have another directory called 'db_revs'. Now in the pre-commit, you take a dump of a spec...

How to not check in Eclipse specific project files?

I don't want to force people into using a specific IDE for development, so our projects look basically like this: SomeProject src lib build.xml No IDE specific files whatsoever. However, many people prefer Eclipse and it is their valid complain that it is annoyingly difficult to set up an Eclipse project from an Ant build file if ...