An alternative to the git-submodule command. Merges and splits subtrees from your project into subprojects and back. git-subtree has been merged into mainline git as of 1.7.11.
1
vote
0answers
34 views
Archiving many old Git projects into a single repo
I've inherited ~150 Git repos at my new job, and my goal is to remove them from the local server where they presently reside and migrate everything into BitBucket.
Alas, most of these repos are only ...
0
votes
1answer
45 views
Can I do a subtree merge from a subdirectory?
Let's assume two git repositories with some files in them:
ProjectA
+ a
+ b
ProjectB
+ foo/x
+ foo/y
+ bar/z
Now I want to include the directory foo from ProjectB into ProjectA.
As far as I ...
0
votes
0answers
20 views
Git Subtree pull not bringing in or merging tags together
I have a Git repository built via git-subtree from other repositories. The grouped repository doesn't have any of the tags from the subtree repositories. Is there a way to merge their tags together?
...
0
votes
0answers
47 views
Git subtree pull overwriting another subtree
I have a repository with quite a few (5-50) subtrees merged into it. When I initially pulled down all the subtrees, everything went as expected. Every once in a while, I switch to my upstream-subtrees ...
0
votes
1answer
67 views
Moving a git subtree into different repository
I try to move a directory and all its history from repository to another repository.
Extracting the complete history of the directory is easy with git subtree split.
This creates a new branch, which ...
4
votes
3answers
82 views
Reduce increasing time to push a subtree
I'm using git in my project, which consists of several sub-projects. Each sub-project is "linked" in the main project using the "git subtree" command. That's my way to realize "svn externals" in git. ...
3
votes
1answer
142 views
Pushing git subtree changes to upstream repository fails
I'm trying to ensure that git's subtrees will work for me before I incorporate it into my project. I encountered a problem when pushing subtree changes to the upstream repository.
The setup is that ...
4
votes
1answer
66 views
How to figure out a working copy contains a subtree?
let's assume we've the following working copy structure:
.
├── adm
└── etc
with
$ git remote -v
origin git@github.com:xxx/my.git (fetch)
origin git@github.com:xxx/my.git (push)
Now, let's ...
1
vote
1answer
50 views
How to remove history of deleted git subtree folder?
I added a git repository using git-subtree. The problem is that I did a hard reset back to before the repository was added with git-subtree. Now the commit history is still in the repository but it's ...
1
vote
1answer
72 views
Git Subtree Merging reports conflict when merging a simple upstream change
I'm getting started with learning subtree merging in git 1.8.2. I have created a simple example to test a change to a third party repo migrating into a main project.
I'm following the 6.7 Git Tools ...
2
votes
1answer
124 views
Keeping track of external git repos merged through `git subtree`
I'm trying to establish a good pattern for managing shared code and external dependencies across several projects. For reasons well documented elsewhere, using submodules has enough pitfalls that I'm ...
3
votes
1answer
85 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
90 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
...
1
vote
1answer
61 views
can git subtree include a subtree?
I am writing and R package that needs some java classes. We found those java classes in a python project (licenses are compatible, original author supportive). We don't want to include the whole ...
3
votes
1answer
91 views
git pull subtree deletes everything
I'm trying to take advantage of the subtree feature in git where I can have a repo that reference an other repo and thus appears to have all the files of both repos. I have read a couple of intros ...
9
votes
1answer
187 views
Extract a subtree using branch incrementally
I'm using git-subtree to extract a directory from my project.
git subtree split --prefix=src/SubProject --branch=SubProject origin/master
Given this is how I would like to start the project to ...
4
votes
1answer
181 views
Git subtree: Use only subrepository instead of whole repository
I have a project that uses some 3rd Party libraries.
So the directory structure is something like:
MY_COOL_PROJECT
3rdParty
LIB_1
LIB_2
Source
MY_PROJECT
The libraries ...
2
votes
1answer
105 views
git-subtree stable for repos with lots & deeply nested subtrees?
I'm maintaining a repo of a CMS/framework which currently uses quite a few (25) submodules. Due to all the downsides of submodules, I'd rather switch to Avery Pennarun's git-subtree (note: not the git ...
0
votes
1answer
119 views
Create new repository out of git subtree
When using git subtree an entire new tree, including a new first commit, is created in the same repository in which it was created. This means that at that point the repository contains two completely ...
1
vote
1answer
114 views
When does git pull cause merge between multiple branches?
I'm trying to understand the circumstances that caused git to merge a feature branch I was working on into the main develop branch after switching to the develop branch.
I was able to revert the ...
12
votes
4answers
471 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
170 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
122 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 ...
0
votes
1answer
57 views
Subtree merge with specific commit
Following the GitHub tutorial, how would I do something like this?
git read-tree --prefix=somedir/ -u someproject/commit-id:somedir
What I want is not to work with the master or any other branch, ...
1
vote
0answers
99 views
Git svn subtree workflow
I have project A, which includes a local fork of project B.
This is, project B's potentially modified sources are included in a subtree of project A.
Project A uses svn, project B uses git.
Using git ...
4
votes
1answer
171 views
Is git svn compatible with git subtree?
Now that git subtree has been merged into the core git distribution (its also on Msysgit as of 1.8.0), does anyone know if git svn works with git subtree?
Note: I am not talking about the subtree ...
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 ...
4
votes
1answer
232 views
How do I go to a specific commit using git-subtree?
I am using Avery Pennarun's git-subtree which is an extension to git.
How do I cherry-pick a commit from a sub-repo into my main repo using git subtree? Also how do I go to a specific commit in the ...
1
vote
1answer
86 views
How to make master/origin aware of a subtree
I have multiple apps that use a shared set of files.
I would like to manage these files using subtrees. I have successfully set up one local clone by checking out the master files and adding the ...
2
votes
1answer
418 views
git-subtree: Push changes from an cloned repo
I'm using git-subtree(from Avery Pennarun). In my current git repo I have of course
all my project files/folders and a subtree called "lib".
If I now clone this git repo using git clone I get all of ...
6
votes
1answer
843 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
77 views
git subtree tag browsing
I have a project that uses two library that are maintained seperately. To avoid the mess of manually copying files over every time the library changes, I managed to create two subtree using this ...
0
votes
1answer
176 views
Make existing folder a git subtree
Following my question Git subtree export and re-import woes I wanted to ask how I would convert a folder to a subtree.
Imagine I have a repository A where I have code that should now be shared with ...
3
votes
3answers
333 views
Git subtree export and re-import woes
I have a larger git repository (A) that shares a certain amount of code with another project (B) of mine. To make maintenance easier, I decided to have a third repository with the common code (C) ...
1
vote
1answer
245 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 ...
2
votes
1answer
225 views
Using git flow with git subtree
I just migrated a large svn repo to git and started using gitflow. It worked like a charm but now I'm thinking about splitting that big repo into a number of smaller ones.
Let's supposse the repo ...
1
vote
0answers
94 views
How to tell git to ignore certain folders and files during a subtree merge?
I have master branch with the following directory structure
templates/something.lib
templates/libs/1.lib
And I also have a templates_master branch with the following files (right in the root)
...
1
vote
1answer
634 views
What is the difference between git subtree merge and git-subtree
I've just found git-subtree tool that some time ago became a part of main git repo
https://github.com/apenwarr/git-subtree/
However I don't fully understand what functionality does this tool provide ...
5
votes
3answers
568 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 ...
2
votes
1answer
173 views
git-subtree without squash: view log
I merged a tree onto a my repository by using git subtree add without the squash option. A git log shows that the commits were successfully added to the repository. However, if I do a git log ...
8
votes
1answer
1k views
git subtree push changes back to subtree project
The short of what's below: I want to push commit messages to a subtree, but only the messages that apply to that tree. How do I do this?
I have two projects, Master and Slave. Slave is checked ...
1
vote
0answers
144 views
I git-subtree add'ed to the same prefix multiple times from unrelated repos and now I can't subtree push
I'm using git-subtree (https://github.com/apenwarr/git-subtree) to manage vendor repos in my project.
A while back I reworked the layout of my project and part of that involved deleting some vendor ...
1
vote
1answer
193 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
1answer
925 views
git-subtree pull complications
We have been trying to get git-subtree working on a project (with git version 1.7.9.4) and have run into a bit of a complication. Someone else previous added the subtree with this command some months ...
2
votes
2answers
304 views
git-subtree push --squash needs a long time, and it is getting longer over time with more commits
I've been using the git subtree extension (https://github.com/apenwarr/git-subtree) .
I use "--squash" to make the log of main project clean, my steps like this:
add lib into main project
git ...
7
votes
1answer
154 views
Removing Git commits on a branch
How do I remove commits that are branched off master?
I have added a large library, along with a very rich commit history (and that predates my code) to a subdirectory via Git subtree. I'd like to ...
2
votes
2answers
173 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 ...
2
votes
2answers
599 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
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 ...