4
votes
1answer
122 views

SVN Question regarding branching and third party vendor branching

We are developing an application which consists of: a source code base given to us by a partner infrequently. This is a somewhat working code, "final" version of something (and we get it in a zip ...
4
votes
1answer
101 views

How would you use VisualSVN to maintain both local and remote source paths?

How, if it is possible, would you use VisualSVN to retrieve source code from an open source project (such as on codeplex), but also have your own SVN repository locally such that you could keep a ...
3
votes
3answers
76 views
+50

Subversion: Using only some of the files from a vendor branch

In "Version Control with Subversion", the Vendor Branches section sets up a vendor branch for "libcomplex" and then uses the following command to copy libcomplex into the main development branch: $ ...
3
votes
1answer
88 views

Is it possible to have a git repository as a “vendor branch” in subversion?

Is it possible to have a git repository as a "vendor branch" in subversion? In this project we will have several parts, but some parts will use svn and some will use git. So I am looking into a ...
3
votes
3answers
311 views

Subversion: Merging a vendor's source code releases into mainline at regular intervals

At regular intervals, I receive a new release of a vendor's software, delivered as source code in a compressed package, and I don't have access to the vendor's source code repository. We make changes ...
3
votes
2answers
341 views

Help me understand Svn merge

I don't understand svn merge. Here's the scenario: We have a branch that contains the latest stable copy of our code. I will refer to this branch as 'the branch'. There's also a trunk branch which ...
3
votes
4answers
636 views

svn vendor branch

In svn red book in vendor branch chapter, it is proposed to maintain a current/ containing the latest release of 3rd party product, so from the example we end up with: ...
2
votes
2answers
111 views

Need help / advice on using branches and merging back to trunk

My question is, when merging as per the procedure below, is the last step of the procedure "folding the branch back into trunk" the proper way to do this, in a best-practices scenario? I've been ...
2
votes
1answer
188 views

SVN: Vendor branches + patching + history?

We have a rather large library that we need to periodically import (and then patch) to our code base. The SVN Book seems to reccomend a "vendor branch" scheme where we keep our patched version of the ...
2
votes
1answer
112 views

Problem doing SVN Vendor Branch - merge

I am trying to use the svn vendor branch to upgrade the third party library. (We have modified the source code) I followed all the steps to create the vendor branch:: created the vendor branch for ...
2
votes
1answer
104 views

Do I need to merge SVN Vendor Branches in sequence?

I have used svn_load_dirs.pl to create vendor branches and I have the following versions in my vendor branch 1.2.0.1/ 1.2.1.2/ 1.3.0/ 1.3.1/ 1.3.1.1/ 1.3.2/ 1.3.2.1/ 1.3.2.2/ 1.3.2.3/ 1.3.2.4/ ...
2
votes
1answer
413 views

Is there a way to do a reverse update with Subversion?

I have a branch in an SVN tree which contains the source to a third party product. I need to update that branch with the latest version. If I check it out and copy the new source over the old source, ...
1
vote
1answer
193 views

Magento version upgrade in SVN

I have a Magento Enterprise Edition install in a repository, client's site is running, all is well. Now I want to upgrade this client to a new version of Magento, but the only help that EE gives me ...
0
votes
2answers
185 views

Is it possible to have SVN vendor branch in a git repository?

I'm having a local project and I want to use a git repository as versioning software. As I'm using an external software on a SVN server as base for my project I think the best way is to have it as a ...