Tagged Questions
3
votes
1answer
82 views
git init in a git subdirectory
I have a git repo which has some subdirectories:
~/src
~/src/.git
~/src/mystuff
~/src/otherstuff
Now I want to share otherstuff with a friend, I was planning to do this with bitbucket. ...
1
vote
0answers
87 views
Maintain project in GIT repo including submodules/subtrees with local changes
I'm trying to maintain my application with libraries in git repo
Structure is something like this
/AndroidManifest.xml
/src
/res
/gen
/libs
/assets
/doc
/libraries
/libraries/ActionBarSherlock
...
12
votes
4answers
464 views
Merge error after converting Git submodule to subtree
I have a project where I was originally using submodules for some dependent code. It turns out that submodules are not really appropriate for this project (and they are hard to use in practice), so I ...
0
votes
1answer
164 views
git sparsecheckout - how to pull into a different directory
I'm using pootle to allow people to translate the .po files in a PHP Yii project.
Pootle can pull and push translations once a translator has updated the .po file.
Separately we have developers ...
2
votes
2answers
119 views
How to track separate projects with same core files in git
I use git version controll and I have multiple projects that uses same base directory, although some changes are made project specific.
Is there a way I could track with same git repo the superfolder ...
1
vote
1answer
843 views
Git subtree - Keep resource code in sync
Let's call 2 projects A and B. Here's the structure for each one of them :
/
|- Foo
| |- core
| | |- bar.txt
| | |- ...
| |- specific
| |- ...
|- ...
The content of ...
6
votes
1answer
807 views
Git using subtree or submodule to manage external resources
I read much about how awful the git submodule is supposed to be, but I am not sure if that is just the groaning of people who feel it limits or if it has serious issues (especially concerning my use ...
1
vote
1answer
234 views
What came first: git subtree merge strategy or git submodule?
What is more recent invention — git subtree merge strategy (not the new git-subtree command) or git submodule command (or maybe underlying mechanism if there was a separate one symmetrical to git ...
6
votes
3answers
547 views
Managing 3rd party sources and binaries used by code under source control
I have a large code base under source control (was subversion, now git). To compile the code and run the tests I use a set of 3rd party libraries. These libraries can be divided into few categoriesL
...
0
votes
1answer
80 views
Side-by-side recursive Git submodules
In our company we make projects by piling-up several frameworks / libraries:
/Framework
/Extensions (depends on Framework)
/Business (depends on Framework & Extensions)
/Project A (depends on ...
1
vote
1answer
192 views
Git's subtree merge strategy doesn't pick the right directory
I have a repository that looks something like this:
foo/
subrepo/
a_file_in_subrepo
another.ext
unrelated_file
subrepo is a repository on github, and I have a remote in my ...
2
votes
2answers
172 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 ...
1
vote
1answer
53 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 ...
3
votes
1answer
348 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 ...
6
votes
2answers
936 views
Git subtree or Git Sub module for large resources?
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 ...
17
votes
4answers
2k 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, ...
3
votes
2answers
515 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:
...