svn

Configuring subversion for visual studio

I have Visual studio 2008 running on windows-7(x86). I have installed subversion (server+client), tortoise svn and ankhsvn on my system. I could add my solution to subversion's repository using the url: File://c:/svn_repository/ But when I try "svn://localhost" I do not see any repository on my system. My friend who is on the same LAN ...

Subversion WebDav troughs download windows on file view

Upon upgrading to Ubuntu 10.10 on our dev machine we run into a small problem with the WebDav SVN. Now when we access a file it sends bin file type as header which triggers the browser to show the download window instead of displaying the file. I didn't manage to find any similar problems and no configuration related to this. Any ideas?...

Remove all of file type from tortoise svn repository

I've exceeded my svn hosting limit so I need to remove all binaries and images from it. How do I issue a command to delete and ignore for example all *.jpg files ? ...

Source code repository portal

I am looking for a "portal" for wrapping our large Subversion repositories similar to GitHub. Does anyone know of any options? Features we are looking for are; home page for projects that include wiki bug tracking etc. This would be for an internal deployment. ...

recursive directory svn move shell script

I want to rename all nested directories named "foo" to "bar" - I've tried the following with no joy: find */ -name 'foo' | xargs svn move {} 'bar' \; Thanks ...

Recover an SVN repository with multiple missing revs/ files

I'm trying to recover an SVN repository after a hard drive failure. Unfortunately, the backup will not help as it was out of date. From 7,797 revisions, we lost only the following seven (7) files from the .../repo_dir/db/revs/7/ directory: 7437 (7-9 Dec 2009) (file also missing from revprops/ dir) 7461 (16 Dec 2009) 7519, 7520, 7521 ...

Designers, Expression or SharePoint Designer, and real source control

I'm trying desperately to move from VSS to a real source control system. Options include TFS and SVN. My designers need to keep their ability to modify source files and instantly preview their changes in a browser without having to commit their changes. Using FPSE with VSS, this works flawlessly, since saving a file causes the copy in ...

SVN - Skipped paths

I received this message when I ran a SVN UP: Skipped 'trunk/scripts/accountability_survey_report.php' At revision 1585. Summary of conflicts: Skipped paths: 1 I've been googling trying to figure out exactly what this means and how to resolve it. I tried deleting the file and then just svn up again, but I get the following: Restored...

Installing Monodevelop from the SVN on Ubuntu 10.04

I wrote the following script to install the svn version of MonoDevelop #!/usr/bin/env bash PREFIX=/opt/local check_errs() { if [[ $? -ne 0 ]]; then echo "${1}" exit 1 fi } download() { if [ ! -d ${1} ] then svn co http://anonsvn.mono-project.com/source/trunk/${1} else (cd ${1}; svn ...

irritating TortoiseSVN error - file or directory is corrupted and chkdsk at boot

Can't move 'D:\Documents\Websites\blah.svn\tmp\entries' to 'D:\ ... .svn\entries': The file or directory is corrupted and unreadable. Any thoughts on what would cause this? This usually happens when trying to commit a large number of new files. Sometimes an update fixes it but most of the time I have to delete the offending direct...

Replacement for Hamachi for SVN access

My company has been using Hamachi to access our SVN repository for a number of years. We are a small yet widely distributed development team with each programmer in a different country working from home. The server is hosted by a non-techie in our central office. Hamachi is useful here since it has a GUI and supports remote management. ...

how to do svn labeling.(modified)

hi friends, I am working on linux enviournment and currently i am using svn's branch for developement purpose...but now i have to delete it and i have to work with main brach with today's date as a lebel like ..suppose my svn repostiory is "xyz" so now i want it to be like "xyz_production_lastproductionDate" than how to labe...

Subversion post-commit hook to sync rep with FTP server ( for a website )

I've installed a repository on my computer locally. What I'm trying to do is be able to work on a website locally on my computer and see changes using something like MAMP. When I commit a change though I'd like it to sync my repo with the live website source files on a remote FTP server. I've done a bit of digging and I know that peopl...

How to create ignore list of several items in SVN?

Hi, I'm creating ignore list in a windows machinge using following: svn propset svn:ignore "bin" Fardis.Test directory structure is: src\ src\Fardis.Test\ src\Fardis.Test\bin\ src\Fardis.Test\obj\ I'm running that command while my currecnt dir is src. This works good but I want to add another more folder (obj) to ignore list, it fai...

SVN project folder tree structure vs production folder tree structure

While developing a PHP+JS web application we always try to separate big blocks of code into small modules/components, in order to make these last ones as much reusable as possible in other applications. Let's say we now have: the EcommerceApp (an ecommerce main application) a Server-file-mgr component (a component to view/manage file ...

Is there any 'alias' feature in SVN like we have in CVS?

I am migrating to SVN from CVS. In CVS I have various aliases defined in CVSROOT/Modules file. That helps me to checkout multiple directories in one go. For example: Defined alias in CVSROOT/Modules file as below =--------------------------------------------------------------------------= my_alias /dir1 /dir2 /dir3 /dir4 /dir5 /dir...

Good overview tool / board for visualizing Subversion branch acitivity?

Our team is sometimes finding it a bit confusing and time-consuming to figure out which subversion operations have been perrformed on our different branches in Subversion. Example, when has the Development branch last been merged into the Trunk? When was this particular Tag created, based on what branch etc etc. All of this informati...

Deployment process for site maintained by 2 companies

Hi All, I work for an agency that has been responsible for maintaining a client’s .net 3.5 website for a number of years along with another agency. Work is farmed out by the client to both agencies on a pretty much ad-hoc basis. The site is quite old and has a structure and deployment process to match. The site is setup that developers...

Auto-commit to SVN with Java

I run a lot of my projects for work using java name.java I was wondering if there was a way to add a hook to it where it would commit to SVN once that command is ran? Thanks! ...

SVN public DNS access problem

Hi All. I met a problem on Subversion configuring behind an Apache under the windows. The server is in domain. If make a check out with the local DNS from the server via HTTPS I have no a problem , if I (or someone else outside from the company) tries make checkout by specifying the public DNS via HTTPS failed by saying : This is not ...