Googling this does little good, as you can imagine.
Does anyone have resources that outline how the PHP Subversion support works. I need to open a repository on disk, and read new commit logs, etc.
Anything you have, would be helpful. Except the PHP docs. I have those already :)
...
Hi,
What I have
I have a C++ code base and svn is used for VCS.
My code uses several 3rd party products. We use different version of each product and use it on different OS (Linux and Windows).
The 3rd products (with the required version) are present in on compilation machines and are used at compilation time, so the relationship b...
I have an unversioned folder "Data Files" in D:\test\prototype\AtlasTools\Transforms\SxS\src\ folder.
I need to add these folder using commandline.
I used the following code to add
for /f "usebackq tokens=2*" %i in (`svn status ^| findstr /r "^\?"`) do svn add "%i"
But it is showing error like "SxS\src\Data cannot be found. Actually m...
I recently moved my Eclipse workspace directory and now Subclipse complains every time I open a file, dumping to the console something like:
Path is not a working copy directory
svn: '[original (pre-move) directory path]' is not a working copy
No such file or directory
This also happens when I explicitly try to view the history of a ...
At work, we are using ASP.net 2.0 and VSS. VSS is a beast, we are continually having issues with people checking out files and there is no branching - makes it crazy. I know SVN/GIT is mainly used by open source developers, are there any downsides to ASP.NET developers using it? I have been pushing for SVN internally, but am thinking GIT...
IntelliJ has this nice integrated "shelve" command that can kind of do this more easily, but still a bit difficult to apply to different branches in one go.
I always manually creating a patch, copying it to the different branch's working folder, then apply. This is sometimes error prone.
What do you guys do?
To clarify a bit (and th...
I use the SVN plugin, Subclipse, for the Eclipse IDE. I recently noticed one of my directories get tagged with the icon seen below. After reviewing the Subclipse label decorators, I didn't see this one. Does anyone know what it represents?
...
I would like to checkout a specific revision of a folder in subversion using the command line but don't see an option for specifying the revision number in TortoiseProc.exe.
TortoiseProc.exe /command:checkout
Any ideas on how to get the revision I want? Is TortoiseProc.exe the right tool for what I want to do? Thanks.
...
Hi,
For the most part, AnkhSVN is working well with VS2008. The only issue I'm seeing is when an image is added from one dev, it is not added to any other machines when the SubVersion Update to Latest Version is executed.
The log file shows that the image was in fact added and submitted to SVN, but no file is downloaded added locally....
Hello,
Can somebody please point me in the right direction for migrating a Subversion 1.4 repository to Subversion 1.6 on a different server ? I'd appreciate any help I can get, I'm not having much luck googling this.
...
Hello,
I recently upgraded my Subversion repository to version 1.6 and I'm connecting to it with Eclipse. However, when I check out a project branch and try to compare it with a different revision, (or any other circumstances for that matter) all of the options for comparison are disabled except for comparing with the base revision of ...
I was using TortoiseSVN for backing up some very large binary files, which I no longer need. I want to recover back this disk space from the repository. All these files/folders were maintained under a single project (working copy) in TortoiseSVN under a single directory.
How do I delete all the versioned files and information related to...
I'm new to subversion. When I do SVN checkout of a repository I get all files with read-only attribute set. I thought that SVN works differently and leaves files read-write all the time. I tried to remove RO attribute, change the files and commit them, but SVN sets them read-only again.
I'm using
TortoiseSVN 1.6.5, Build 16974 - 32 Bi...
I checked in (modified )some of the files recently . When i'm trying to watch the Logs from my local machine every thing is perfect .(the checked in file shows modified status.)
But When i try to watch the Log History from someone else's machine ,the checked in files are showing as newly added .
Would someone suggest the reason for th...
I have some projects in a workspace that were imported from SVN using Subclipse. Now I'm opening this workspace with a new version of Eclipse (with Subclipse) and the "Team" context menu only contains "Apply patch".
Is there a way of getting subclipse working with these projects without having remove them from the workspace, and do a ne...
We have two repos, a development and a production one. It was build so that test things went into the development one and then were merged into production now sometimes people forget to merge and they become out of sync. What's the best way to find all the changes in the development repo that are not in the production one?
...
Assume that you have a directory under subversion control, that contains some files and tons of subdirectories, like that:
file1.txt
file2.txt
file3.txt
dir1/
dir2/
dir3/
dir4/
:
dirXX/
Now you need the files and some of the dirs, but not all of them. This can be done with SVN. Just make the checkout non-recursive:
svn checkout -N <U...
This post asks how to convert from bazaar to svn. I need to do the opposite. I need to extract all the commit history from a svn repo and "replay" it on a bazaar repo. I will then drop the svn development and continue on bazaar.
Any hints ?
Edit:
Thanks for the answer. I ended up doing as follows:
1) Performing synchronization of the...
I did not use the hotcopy to back up my Subversion repository. We use Visual SVN Server (latest) with tortoise. I copied C:\Repositories and backed that up a few days ago and now I want to restore it.
I'm able to use the repository now with the backed up Repository folder copied over.
and then I guess now I have manually go through e...
EDIT: Ok... so I've gathered that SVN shouldn't really be used for this... which makes sense, I suppose (why version individual files when the version should be a separate jar?).
So we should use an internal server to host a repository management tool like Nexus (etc), and access that over http to pull down and put out dependencies. We ...