The vendor-branch tag has no wiki summary.
0
votes
1answer
32 views
With Git, how do I apply the difference of two versions on branch A to branch B?
We have third party software that changes about 3 or 4 times per year. The vendor's code obviously doesn't take our customizations into account and when their latest code (a single Pro*C file) is ...
0
votes
1answer
206 views
svn:externals ignoring specified revision
I'm using svn:externals and I've specified a specific revision using the SVN1.5+ format, but SVN seems to ignore the revision number.
$ svn --version
svn, version 1.6.17 (r1128011)
$ svn propget ...
4
votes
3answers
134 views
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:
$ ...
2
votes
1answer
171 views
Vendor Branch workflow setup
I have been thrown into a software development project where we have a PHP application from a vendor with fairly regular code updates. I need to be able to build on top of this code while, at the same ...
7
votes
1answer
122 views
Propagate a remote location via clone/push/pull
Our project uses several third-party open-source libraries, some of which require custom modifications.
For each library we created our own local git repository, added the original source location as ...
3
votes
2answers
285 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 ...
0
votes
2answers
363 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 ...
5
votes
2answers
523 views
Mercurial “vendor branches” from external repositories?
I want to store a project in Mercurial that contains external code (which can be modified by me) coming from Git and SVN repositories. In SVN I would solve this with vendor branches and copy the code ...
3
votes
1answer
296 views
How to replace svn's sub directory vendor branch with git's subtree merge
The old process was the normal svn vendor branch, however I only ever copied a sub-directory to the main codebase. So for:
vendors/Zend_Framework/current/library/Zend
was copied to:
...
3
votes
1answer
516 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 ...
11
votes
2answers
1k views
Vendor Branching, Mercurial Style?
The scene: A purchased web application, with regular updates from the vendor. We then, heavily customize the look and sometimes add our own functionality or fix a bug before the vendor gets to it. ...
3
votes
1answer
130 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 ...
1
vote
1answer
259 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 ...
2
votes
1answer
186 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 ...
4
votes
1answer
163 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
152 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
430 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
424 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 ...
2
votes
1answer
133 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/
...
3
votes
4answers
865 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:
...
3
votes
1answer
2k views
Are there any alternatives to svn_load_dirs.pl?
We have a large vendor branch (1200 odd files) that has recently undergone some non-trivial changes, which I'd like to integrate back into the trunk. It updates fairly frequently and we'll need to ...
5
votes
2answers
3k views
Subversion Vendor Branches
What is a best practice when setting up subversion to use vendor branches? Our repository is structured for individual projects. We are using subversion 1.6.2 and tortoiseSVN 1.6.3.
Example folder ...
11
votes
2answers
7k views
Vendor Branches in Git
A Git project has within it a second project whose content is being worked on independently.
Submodules cannot be used for the smaller, as even the subproject must be included when users attempt to ...
5
votes
1answer
562 views
git workflow for making modifications you'll never push back to origin
Git newbie here.
I'm building an iPhone app with PhoneGap, which has a Git repos. I'd like to keep track of my changes to the PhoneGap code (mainly, adding files to the www directory) in my own Git ...
3
votes
1answer
501 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, ...