Subversion is a centralized open-source revision control system, founded by CollabNet Inc. and maintained by The Apache Software Foundation.
0
votes
0answers
3 views
Using subclipse - how to make sure I'm committing to the right place when project has mixed branches?
I have a java project in Eclipse, the root folder is on the trunk of SVN. The root folder contains code for multiple teams and completely unrelated projects. I create a new branch for implementing a ...
1
vote
1answer
18 views
Import a project in SVN from Xcode 5
In xcode 4 organizer there was a button "import", in xcode5 how do I import a project in my svn repository?
thanks
-1
votes
0answers
14 views
how to commit deletion of file to svn repository programatically
I have a code using which one can programatically commit files to SVN reposiotry. I am using the below code to add files:
this.ourClientManager.getWCClient().doAdd("my file", false, false, true, ...
0
votes
1answer
9 views
Ignore files while creating a tag in svn
I am trying to find out a way of ignoring certain files while creating a tag from a branch.
I am using subversion-tagging plugin to create a tag. It does a URL to URL copy.Maybe I can use 'svn copy' ...
0
votes
0answers
15 views
using SVN 1.8.3 with Xcode 5
I updated the Subversion client on my system to 1.8.3. I did a checkout of my repository from Xcode 5's Source Control menu. Then in terminal opened that directory and did an svn update command just ...
0
votes
0answers
10 views
“Add to svn:ignore” grayed out for new file in Eclipse/Subclipse/SVNKit
I have a new .settings file in an SVN project with "Add to svn:ignore" grayed out. There are no other files pending addition so this solution has no effect. I have tried reverting the file, until it ...
2
votes
2answers
16 views
SVN post-commit script not being executed
I have spent a couple weeks now trying to resolve this issue (without any progress).
I followed the svn redbook section "Implementing Repository Hooks" by:
copying the ...
0
votes
3answers
27 views
Migrate a regular SVN repo into a trunk-branches-tags folder structure
I have a regular svn repo with this folder structure:
conf
dav
db
hooks
locks
How can I migrate it into the
trunk
branches
tags
structure without losing my history?
2
votes
1answer
16 views
SVN Pre-Commit Hook For Identical Messages
My colleagues are very stubborn. At the beginning they would commit with no message so I tried to educate them and put in a pre-commit script to check for empty in case they forget.
They would then ...
2
votes
2answers
20 views
svn diff for binary file(excel file)
I have configured svn repository for an excel file,
So I checked out and create myworkingdirectory
Then I changed the excel file and I wanted to see the changes by svn diff
which It says that ...
1
vote
2answers
26 views
Finding Lines of Code in Suvbversion
Friends, can anybody know finding lines of code in Subversion? As I am new to Subversion, I dont know much about it. Basically, earlier we used Clearcase as our Version Control System.
One of our ...
1
vote
1answer
11 views
What does git svn clone with no params for layout do?
I have a grouped multi-project repo with the following structure:
http://my.subversion.host/svn/repos/PRJGRP/projectN/{trunk,branches,tags}
Let's say I'm cloning project 1; the following commands ...
0
votes
1answer
13 views
SVN move a local working sub-dir containing some unversioned files
I have a structure a bit like
/work_dir
/resources
/sounds
/game_sounds
I want to move game_sounds into sounds without losing history, but it contains some unversioned files which need to stay ...
0
votes
1answer
17 views
How to make Eclipse SVN/Team Synchronize work like command line SVN?
How do I get Eclipse Team Synchronize (for SVN) to only commit files that are under version control when I perform an svn commit? This is the default behavior for most subversion client tools but does ...
0
votes
2answers
29 views
Best practice use of svn:externals
Let's take three cases:
This statement is good. 999 is a peg. This is the so-called "old format":
foo -r999 http://myrepo/foo
Alternatively, the peg can also be specified like this (in the "new ...