Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
4answers
521 views

git: How to split off library from project? filter-branch, subtree?

So, I've a bigger (closed source) project, and in the context of this project created a library which could also be useful elsewhere, I think. I now want to split off the library in its own project, ...
5
votes
1answer
370 views

Git subtree merge strategy or subtree command?

I'm starting a new Zend Framework project in which I will collaborate with a designer. I'm going to maintain this project code using git and usually designers don't speak git (or any programming ...
3
votes
1answer
113 views

How to structure a python projects with shared sub apps using git and buidout without symbolic links

I have multiple projects that shares child apps with other projects. When working within the project directory I want to be able to make changes to the app, update it, and pull those updates into the ...
3
votes
2answers
242 views

Git subtree or Git Sub module?

Here is the problem: I have a lot of code, including artwork for the GUI I need to version in order to faithfully recreate a software product. I am also working on both Windows and Mac. The actual ...
3
votes
2answers
247 views

How to create two Git repositories in the same base directory, without using branches?

We are currently in the process of moving our Magento Enterprise (an e-commerce web application) files into Git. The httpdocs/.gitignore file contains, among other things: ...
2
votes
0answers
39 views

Split Up Folders in a git repository into separate branches

I have finally migrated our CVS repository to git. Unfortunately we didn't use branches in CVS but different versions/branches were separated into different subdirectories. I.E. we have the following ...
2
votes
1answer
360 views

git-subtree is not retaining history so I cannot push subtree changes, how can I fix this/avoid this issue in the future?

I've been using the git-subtree extension (https://github.com/apenwarr/git-subtree) to manage sub-projects within our main project. It's doing exactly what I want other than the fact that it fails ...
1
vote
1answer
31 views

Pushing subtrees in a git repo

I'm quite new to Git: I come from SVN and there I found really powerfull the :external feature. Here in Git I haven't find something similar: submodules are perfect for adding project modules that ...
1
vote
1answer
22 views

Include utility repository in main project repository and allow customization

I'm working on improving source code redundancy in some projects and I'm faced with an issue. Lets say I have some utilities that I use acros more projects. Example: build scripts and test scripts ...
1
vote
1answer
50 views

git reports merge conflict with no changes, empty lines (using git-subtree)

I'm testing the use of git-subtree to merge a library repo into a bigger project. It seems great in principle. Sometimes when I do a "git subtree pull" I get merge conflicts like this: ...
1
vote
2answers
185 views

git push a sub-directory into another main repo

I have a big main project with several directories as subtrees. I want to push the changes in one specific subtree to its origin, which is a separate repository. The trouble seems to be, that the ...
1
vote
3answers
455 views

Git subtree workflow

In my current project I'm using an open source forum ( https://github.com/vanillaforums/Garden ). I was planning on doing something like this : git remote add vanilla_remote ...
0
votes
1answer
28 views

Workflow to customise Django Applications and contrib/merge upstream

How can I pull 3rd party Django apps into my Djano project if they require small code changes? I need to be able to: Merge upstream changes Submit pull requests for new features/mods Use the ...