Tagged Questions
The vendor-branch tag has no wiki summary.
8
votes
2answers
626 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. ...
8
votes
2answers
5k 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 ...
6
votes
1answer
53 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 ...
5
votes
1answer
213 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 ...
4
votes
1answer
118 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
100 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 ...
4
votes
1answer
466 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
80 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
300 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
331 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
613 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
104 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
177 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
110 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
97 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
405 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
26 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 ...
1
vote
0answers
208 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:
...
1
vote
1answer
185 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
177 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 ...