Hi, I added the $Rev$ tag and invoked svn propset on a set of files during my project. The revision number that shows up is $Rev: 8 $ but during checkout it says I am on Revision 10. I think the $Rev$ counter does not reflect the actual revision number but the revision since svn propset was invoked? Anyone know how I can I sync the two?
...
You know, the regular "svn commit". "svn up."
When I did svn co, it was linked with SSH.
svn co +ssh or something.
How would I link this with Windows? I'm using Windows and I'd like to put some code i this SVN. What tools do I use to get started? Can I checkout normally, with the Linux syntax?
...
Hi.
I want to do a Diff between a locally commited change and between the SVN commited last change. i.e. HEAD and what is on SVN Master trunk.
what would be the suitable command?
Cheers
...
Some users are committing svn deletes by mistake, and I would like to restrict these accidental deletes, while retaining read/write permissions. Of course, they could overwrite files with zeros, but that doesn't accidentally.
I did some googling and found there was a python file that claimed to do this, but as svn has changed sites, the ...
There is an internal SVN repository on which many changes have been made. This contains not only the project of interest, but also many other folders.
There is an external git repository, on which many changes have now been applied.
What is the best way to merge these 2 sets of changes.
I was thinking, take the diff of the git HEAD an...
Hey,
I often hit this problem:
I have to merge a svn branch into trunk. The branch is old, and has seen a lot of changes that were manually copied from one branch to the other. svn:merge info is not present.
Araxis almost makes my life easy. I make a checkout of trunk, a checkout of my branch, and a checkout of my branch at the revisi...
I want to run scheduled nightly exports of my database code into my SVN source.
It's easy to schedule automated check-in's into svn from a folder, but scheduling the export from SQL in SQL Management Studio is
Right click target database, choose Tasks > Generate Scripts.
Follow the wizard and presto you've got scripts in a folder....
hello
I have have a main project I am working on, which has several modules/directories.
The main project is bound to local svn repository. however, whenever I do commit, I would like to push some modules/directories to Google code repository as well. However I only want to update from local repository. Is there a way to do it automat...
Currently a group I am a part of uses SVN. We are looking at moving to git. I have used git personally (and am actually using git-svn to bridge back to the main SVN repository), so I am convinced of its benefits.
One concern is that git is more complex than SVN. We have some brand new folk who will need to learn version control from th...
I'm moving my repository to a new location, but I have folders with the (same) repository URL hard-coded in the externals properties. e.g:
old URL: https://OldLocation.Domain/svn/
new URL: https://NewLocation.Domain/svn/
How can I change the old repository URL to the new one? simply editing the property doesn't work.
...
I've found similar questions to this problem but they don't really satisfy my situation. My code is apart of a single "project" in an SVN repository. The "project" includes not just Java code, but also C/C++/Cuda. I simply want to check the entire repository out but only work on the Java code (that runs from an Ant build).
I'm lookin...
Hello, I created a new branch to do some (breaking) work while the other developer kept chugging along working on trunk. Well, now that I got this branch done and ready to merge, I'm having trouble.
I am using TortoiseSVN. I did the "merge two separate trees" and what is appears to do is just copy all my changes from the branch into tru...
Hi, I've been tasked with setting up a subversion server next to a Plone instance. The situation is that the Plone instance is already in a "production" state because there are outside users that can access it any moment.
I believe setting up a LDAP and binding both, the Plone and subversion instance, to it for authentication is the be...
I have two folders laid out as below:
svn/BaseLibrary/trunk (which contains)
svn/BaseLibrary/trunk/Core
svn/BaseLibrary/trunk/Controls
I would like to include BaseLibrary as an external on another project so that the Core and Controls libraries sit inline with the rest of my project. So with my other project below:
svn/Project/trunk/...
I'm trying to merge changes from one branch into another using Subclipse. On a particular file in a particular subdirectory, I had a file conflict and edited the conflicts via the context menu option for this. However, when I went to resolve the conflict I apparently chose the wrong option and was left with the original unmerged file in ...
We've recently moved from CVS to Subversion 1.6. We used the native Eclipse CVS support as our CVS client. We now use the Subsclipse plugin as our SVN client.
We used to use the CVS "edit" function to mark a file for edit so our users can see who is currently editing what. They also get prompted when they try to edit something already u...
We've recently moved from CVS to Subversion 1.6. We used the native Eclipse CVS support as our CVS client. We now use the Subsclipse plugin as our SVN client.
I've found that we're having problem seeing locked files in Subclise if the file isn't configured with "svn:needs-lock".
If a file has "svn:needs-lock" then the Navigator pane cl...
I got a SVN repository copied onto my computer using svnsync. Now when I try to replay it using PySVN it fails at a specific revision (29762) with the message:
pysvn._pysvn_2_6.ClientError: URL 'svn://svn.zope.org/repos/main/ZODB/trunk/src/Persistence' doesn't exist
I can checkout or update until the previous revision (29761) ok bu...
I've been using subversion to store my Visual Studio Solutions. Up until now I've always stored the entire solution in a single trunk folder, with a single tags folder to store revisions of the entire solution.
\trunk\
\tags\1.0\
\tags\1.0\
\tags\3.0\
My VS solutions so far have usually only contained one project, and if they contain...
I have got a central SVN repository I must commit to, but I've got a passion for git (like any other developer I know). The case is well known.
Then I read about git-svn and gave it a try. Since I don't need the full history, just from two months or so, I did like this:
git svn clone -r 34000 -s https://svn.ourdomain.com/svn/repos/Proj...