I was reading this article on Coding Horror:
http://www.codinghorror.com/blog/2008/04/setting-up-subversion-on-windows.html
I went to the downloads and am confused. I would have just downloaded the first entry but I am afraid it would break my server or something if I don't have apache. We use IIS only and I wouldn't want to break it...
I have checked out now a local working copy of a codebase that lives in an svn repo. It's a big Java project that I use Eclipse to develop in. Eclipse of course builds everything on the fly, in it's own way with all the binaries ending up in [project root]/bin. That's perfectly fine with me, for development, but when the build runs on...
Hello!
Im trying to create a new ASP.NET website and add it to my subversion repository but it does not work because subversion only add the C:\Users\XXX\Documents\Visual Studio 2008\Projects\WebApplication1 folder and ignores the project files located in C:\Users\XXX\Documents\Visual Studio 2008\WebSites folder.
Why can't I add a ASP...
Hi Folks, I'll try my best to explain how I'm trying to set up this system.
Imagine a production server running WHM with various sites. We'll call these sites... site1, site2, site2
Now, with the WHM setup, each site has a user/group defined for them, we'll keep these users/groups called site1,site2 for simplicity reasons.
Now, updati...
This is kind of similar to http://stackoverflow.com/questions/1601021/subversion-merge-has-different-repository-root-than - but appears to be a very different cause (especially as the answer for that question didn't resolve my problem).
A while back, we swapped out the server where our SVN repositories are located - but we've been using...
Last evening I did some housekeeping on our code repository - basically moved the code from /repo/trunk to /repo/projectname/trunk.
I changed the repo path on my trac.ini - after which trac complained the repository needed to be resynced. So I ran:
trac-admin /var/trac/projectname resync
and all was well.
Then I checked the changes...
How to instal in SVN repository server
on Windows local Machine.?
...
We are finding that merging using tortise SVN is slow and cumbersome, we've also recently started using capistrano (capify) to deploy to development.
Is there a way to merge revisions to a branch and automatically deploy to another environment if needed?
Thanks
...
Anyone install both? Using each for separate projects obviously. Shouldn't be a problem, I'm guessing, but hoping to fish out any gotchas. Furthermore, anyone use Tortoise Git, Subversion and Mercurial on the same machine?
Edit: Forgot to mention, this is for Windows 7.
...
Sometimes Apache with mod_dav_svn starts to consume a lot of memory.
Today Apache(httpd.exe) consumed about 600M.
And there was a lot of java.lang.OutOfMemoryError in Hudson when it tried to update working copies for some jobs.
What can I do in order to fix this problem?
...
I'm new to SVN. I'm using the latest version (svn 1.6.9, TortoiseSVN 1.6.7.18415).
Some folders who a red exclamation point next to them. If I drill down, I find a sub folder with ! as well but no files within that are marked with ! (all are either a green checkmark or no icon (because they are Ignored (like .exe files) .
What I've tri...
I'm running this small C# test program launched from a pre-commit batch file
private static int Test(string[] args)
{
var processStartInfo = new ProcessStartInfo
{
FileName = "svnlook.exe",
UseShellExecute = false,
ErrorDialog = false,
CreateNoWindow = true,
RedirectStandardOutput = true,
...
I committed a 3rd party project into my own svn repository. Now, I got a new version of that project and I'd like to substitute it in my repository.
The project is quite big (1.2GB) and the new version has new files/directories and also deleted files/directories.
The trivial solution is
svn rm project
mv /path/to/new/project .
svn add...
Is there a way to share the Eclipse task list within svn repository?
...
I'd like to be able to comment on a particular Revision in SVN (using TortoiseSVN). The only way I can see to add a comment (like Release Version X.y) that would be visible in the Revision Graph of all files is with a Tag but that seems like more of a way to Branch the code (and that's not why I want to label it).
Is there a better way...
SVN newbie (although so far I really like it (coming from CVS)
Ok, here's my scenario:
I had:
Version x
Then I copied a set of old files over the top of those
Checked them in and created a Tag ("OldVersion")
I now want to revert back to version X while still preserving "OldVersion")
It seems like something like a BackMerge might do...
For some reason I need to check in a couple of files in the bin\Debug directory. For the past few weeks, I am noticing a strange behaviour from VS2005. Every time I recompile the code, it is deleting the .svn folder in the bin\Debug directory and hence svn is showing "obstructed" error. Even svn clean up doesn't help due to missing .s...
Say I have a file in a SVN. How do I use PHP to check the file's revision number?
I see the SVN function list at http://www.php.net/manual/en/ref.svn.php but am not sure which one to use or the exact code to do it.
Thanks!
...
How to make tags for multiple projects within one revision?
For example, if it needs to tag with the same name:
svn copy svn://localhost/BigProject/Project1/trunk svn://localhost/BigProject/Project1/tags/1.0.0 --message "1.0.0"
svn copy svn://localhost/BigProject/Project2/trunk svn://localhost/BigProject/Project2/tags/1.0.0 --message "1...
I keep seeing lines in SVN commit notification emails like:
A \myproject\src\codefile123.cpp
When this file already exists in the repository. I can't tell if it's a little bug in the host (Codesion) or in SVN, or if something strange is going on.
We're using TortoiseSVN against SVN 1.6, if it has any relevance.
edit: If anyone el...