svn

TeamCity: labeling VCS (Subversion) with an artifact's file version

I want to create create a label (tag) in the SVN with a file's version. I'm already renaming the artifact by getting the file version of the main executable produced by the build. Such as: MyInstaller-1.2.3.1.exe. Now I want to create a tag in the SVN called /tags/1.2.3.1. I couldn't find a way to set such a thing in the labeling patte...

Trying to SVN Checkout Open Source BitSharp Library

I am having some trouble trying to checkout the BitSharp source code using SVN. When I try to checkout http://anonsvn.mono-project.com/viewvc/trunk/bitsharp/src, revision HEAD, Fully recursive, Externals included - I get the message: Repository moved permanently to '/viewvc/trunk/bitsharp/src/'; please relocate Can anyone help...

A Subversion user's guide to Git?

I am a new user in Git world. I used to use Subversion (using TortoiseSVN) and it is pretty easy. I would like to try Git but i got confused by the terms. Is there any documentation/guides that can explain me how to use Git? For example, in Subversion I use checkout; in Git which commands should I use? Any good book about Git that I cou...

Migrating svn 1.4 repo's to 1.6, populating node origins.

I just upgraded to SVN 1.6.1 from 1.4, and in the various docs, it is recommended to run svnadmin upgrade and compile svn-populate-node-origins-index.c and run them on the repos to generate node-origins records that should speed up in svn-log processing. svnadmin upgrade went fine and swift, h owever I have trouble compiling it (FC11)....

SVN Won't download newly added files

SVN won't download newly added files but will update existing. Developer B adds 3 new files to the repo, and when Developer A updates it does not download the files. Both using TortoiseSVN and VisualSVN. Does anyone know what could be causing this problem? If Developer A goes to the Repo Browser they can see them, but it just won't u...

How do I properly remove an svn:externals and replace it with a local (non-external) copy of the same directory?

I realize there are similar questions on this topic, but I still cannot find the answer for my specific case. I have a project that I inherited from another team's repo. We did an "svn switch --relocate" to redirect our checked out copies to our server, instead of theirs. But, they still have an svn:externals for a subdirectory and it st...

A good video to explain version control?

Does anyone know where I can find a good video to explain version control to someone (mainly subversion)? One that explains it in the simplest terms (like for someone who has never heard of version control before). (not for me, its for a fellow coder) ...

How to use an Internet Subversion respository when developing code?

I've painted my self into a problem working with a Subversion project from CodePlex - for this I asked for help here. I have a local repository and CodePlex has it's Internet repository for the project, and the two don't mix :-(. But my dear departed dad used to tell me that the difference between a clever man and a wise man is that the...

Import TFS History into Mercurial (hg)

Has anyone had any success importing TFS 2008 history into a new Mercurial repository? The only possible solution I've found to date is to go TFS -> svn -> hg using tfs2svn and then using the Convert Extension but I haven't tried this yet. ...

Is there a command which will print the path of the file in the repo-browser in the command line?

Is there a command which will print the path of the file in the repo-browser in the command line? SVN diff only prints the file name. Thank you. ...

Is there a command which will print the path of the file in the repo-browser in the command line

Dupe of http://stackoverflow.com/questions/1048356/is-there-a-command-which-will-print-the-path-of-the-file-in-the-repo-browser-in-t Is there a command which will print the path of the file in the repo-browser in the command line? SVN diff only prints the file name. Thank you. ...

pre-update svn script to filter what get

Imagine a repository with many kind of files. Then, I want to get from this repository just some kind of files in a "filter process". I mean ALL FILES are versioned. But to my local work, I just wanna i.e get *.php files, ignoring download *.jpg instead. I think about client-site hook script (pre-update). Anyone know if is it possible?...

Where does Subversion save to?

I'm learning to work with SVN using Visual Studio.NET. Everything works fine and all but I couldn't figure out something: I have my original source code at c:\source I created a repository at c:\repo (svn://localhost) I added my solution to repository using VS.NET at svn://localhost/MyProject/trunk I checked out a working copy from r...

Automated Testing of Binaries from SVN on HPC

I would like to setup some automated testing of test cases upon Fortran binaries within an SVN Repository, on demand, or with a Cron job. To complicate the issue slightly, the test cases would be run on a computational cluster, so that each test case would need to generate a PBS script. (Linux Environment) There are a lot of web testin...

How do you use Edgewall's Trac?

We've been using Edgewall's Trac and a plethora of Trac-Hacks to manage a large development project. It serves as a front-end to our SVN repository, it is our project wiki, and we've progressively built a nice toolchain to tie it all together. (We especially love the integration between Trac and SVN using Tortoise, TracExplorer, and post...

return subversion working copy to an old revision

Hello I had some problems with my subversion server and i had to restore it from backup but it is an older one. For example i have the server at revision 400 but my working copy is at 405. How can i get my working copy to an older revision withought loosing my work and recommit the changes. Thanks a lot ...

Some doubts on setting an C#/Asp.Net 3.5 application automatic builder server

I want to set my server to automatically build my application upon commit on SVN repo, then deploy on a test/homologation server. What I planning to do: install a build tool (Nant? use MSBuild?); create a simple script and set a hook to SVN that starts the process of building and deploy. To do that, what I need to install on my serv...

svn checkout and update without the .svn directory

I have a website under svn and I want to patch the live website with what's currently in the repository (i.e. effectively calling svn update on the live website), but I don't want .svn directories in every folder on the production website. Is there a way to set up svn so that the .svn folder with version information is not in the same d...

How to fix subversion password config?

I want that everytime someone wants to checkout the project from SVN he/she will be prompted for credentials. This happens when someone tries to commit something, but not at checkout. Here is the svnserve.conf section : [general] anon-access = none auth-access = write password-db = passwd I figured that by setting anon-access to none...

Add PEAR packages to Subversion repository?

I'm working on a project that'll use PEAR packages. Because you never know what version of the PEAR package will be installed on your hosting provider (and especially because I require a patch to have been applied to one of the packages), I'd like to put the PEAR source for my project right into SVN, so other developers can immediately ...