Preface
I realise there are already a lot of questions about merging SVN branches on SO. I have read many of them, but still haven't really found the information I'm looking for, so please read this question in it's entirety before proposing to close it as a duplicate
I need to merge one SVN branch into another. I'm pretty comfortabl...
I'd like to write an online SVN repository browser.
I've decided to implement it as an Apache module, wrapping around the command line client (for the time being).
As I'm getting started, I have the following code:
FILE *f;
f = popen("/usr/local/bin/svn cat http://myrepo/svn/shell.c", "r");
char buf[1025];
if (f) {
ap_rputs("open ok...
Until recently we have been using SVN for all projects of our web studio, and there is a very convenient feature present in several clients like Subversive and TortoiseSVN that can extract all files that have been changed in a certain revision.
Is there a way to do it in Mercurial? I don't care if it's done via a GUI or a command line, ...
Hi,
Does anybody know how to prevent commits to a Subversion code repository when there is no commit comment entered?
Thanks in advance.
Kind regards,
Maverick
...
I downloaded some source files on a Mac that were previously part of some working copy on the authors computer, I need to use these files in another repository but the SVN client "Versions" for Mac is picking up on the data from this old repository. I can't find the ".SVN" folder anywhere... any idea on how to "cleanse" these files so I ...
Using subversion v1.6.6 and TortoiseSVN v1.6.6..
After having created a branch and meticuously adding detailed comments whenever doing a commit on the branch, I can't seem to find those comments after I have merged the branch back onto the trunk.
Note : We're employing a feature branching strategy where all development is done in new b...
I have a problem that I describe poorly in another question. I'm posting this to make it more clear what I want to do, and what problem I'm encountering. There is a highly-voted answer, but it doesn't actually address my problem (short story: I'm not trying to add a symlinked directory to my version-controlled project).
If you already k...
Question:
How do I do I set it so that other users can access my svn repo with tortoise?
Info:
I have a svn repo set up on my little home server (Ubunt 9.04) and i'm trying to set things up so that my friends and I can work on some programing projects together. Right now I can get my account that i use for admin (we'll call it bob) t...
Hi,
I am trying to link a Flex Builder WTP/Eclipse project with an existing SVN source structure. I'm using subclipse within Eclipse.
Below is a mapping of some of the directories:
Flex Builder/Eclipse Structure -> SVN Directory Structure
-flex_src -> flex/src
-flex_libs -> flex/libs
-java_src -> java/src
-WebContent -> web
** H...
I know how to get the local version number into a file with Eclipse. Right click, Team, set property then svn:keywords Id.
But how do you get the $GlobalRev$ to appear? There's something called svnversion which is supposed to do this but is it integrated into Subclipse?
...
Possible Duplicates:
Any svn:hook script that enforce commit with comments?
Creating a Required Comment Hook for Tortoise SVN
I often see a slew of commits, but no notes referencing the tickets... And so I end up going back and reviewing the diff manually. Not necessarily bad, but it would be nice to have notes. Any ideas?
...
Hello,
I am trying to run a build script and I keep getting errors during a specific svn task. When I try to build the target from the command line, I get an authentication error. When I run the build from flex builder I get an error saying "please get a newer Subversion client". From what I can tell there is a root issue that can be se...
My SVN repository was perfect at revision 497. I performed several bad commits, so that now it is at revision HEAD. I see that to rollback you should use a command like this:
svn merge -r HEAD:497 .
while in the working directory (and the working directory is at the HEAD revision). But is that the right command? Or do I use HEAD:498? ...
I've already created my repository and have been using it for a while. I wanted to check what filesystem data store it is using: Berkeley DB or FSFS. I'm not sure how to check this. I've looked at svnadmin, svnlook, etc. Any hints on how to do this?
...
I installed Trac on my vps
It loads the pages fine except for reading the svn repository which is working fine on my subversion client
the error i get is
Warning: Can't synchronize with the repository (Unsupported version control system "svn": "libsvn_fs-1.so.0: cannot open shared object file: No such file or directory" ). Look in the...
I am coordinating a number of PHP development projects. I have setup a workflow where developers all work with one Subversion repository. When they are ready to take a look at their application on staging servers upload a MySQL DB dump and create a tag.
I have configured a shell script that will automatically deploy the PHP code to th...
are there any continuous integration service/hosting providers that I can just point at an arbitrary SVN server (given credentials of course) and it'll update to the latest source and build?
I'm interested in building C# projects, ideally, it would be something like the TFS Build manager, or cruisecontrol.net ... though it doesn't have ...
I have a question where we have a project who's source code was originally written in Spanish. As more developers join the project, the original developer decides to change all the Spanish syntax to English.
The question is, we have divided the tasks to multiple developers and all of us will start implementing features based on the Spa...
I have a web-based application that I would like to open source by using a public svn host, the problem is that the project contains configuration files which I would rather keep some of the values private. What is the best way of handling this?
Ideally I would like to be able to import revisions without having to replace the file with ...
I wish to include the dll output by a project built from an external SVN repository within my own project. What is the best approach to achieve this aim.
As the external project svn:ignores the bin\release folder I don't think I can use an svn:external.
Building the latest version and copying across the dlls seems prone to error.
In t...