Tagged Questions

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 ...
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 ...
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: ...
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 ...