Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
993 views

Best practices for using Git with Magento?

Howdy, I'm working at figuring out how to best work within my own repo for custom code while integrating with a vendor's library (in this case Magento). In my case, I will not need to push up patches ...
5
votes
1answer
349 views

Git: Subtree Merge into a Deeply Nested Subdirectory?

I'm attempting to use git's subtree merge stategy where the subdirectory into which I want to merge is nested fairly deeply - currently four levels deep. I followed the directions here to add the ...
5
votes
1answer
296 views

Git confused when merging an update into my subtree

We previously used many submodules in our main repositories, but to increase the maintainability of our projects we started an experimental branch where we replaced them all with subtrees. This ...
5
votes
3answers
1k views

git: can I subtree merge just a subpath of a repository?

I have the remotes Foo and Bar. Foo is a web application that has lots of directories, relevent amongst them is /public which cointains assorted files and other directories. Bar is a set of libraries ...
4
votes
2answers
148 views

How to merge/pull from remote repository

I'm trying to merge a few subdirectories from a remote git repository to my repository. Both Remote and Local Repositories include the whole kernel repository and I'm interested only in the wireless ...
4
votes
1answer
671 views

Using git subtree merging, while also merging in all branches of all merged subtrees

I'd like to use a popular, open source issue tracker (Redmine) that offers git integration. Unfortunately, each project in the tracker can only be associated with one git repo. Creating multiple ...
4
votes
2answers
987 views

Using Git, what's the best way to subtree merge an external project that has submodules?

I'm using a Git repository for everything related to a website I'm developing. The repository holds all files related to the site, including documentation, mockups, original layered images, etc. as ...
3
votes
2answers
541 views

Git subtree merge strategy, possible without merging history?

I've been trying to move away from submodules in order to get a self-contained repository, and the subtree merge strategy seems to match this use-case. However the merged repos' histories appear in ...
3
votes
3answers
394 views

How to change the source of a Git subtree merge

I have a project where I've merged in a library using Git subtree. I've pushed and pulled a few minor changes between the library and the project. Later on, a new repository has been created which is ...
3
votes
2answers
724 views

Git subtree not properly using .gitignore when doing a partial clone

I am a graduate student with many scripts, bibliography data in bibtex, thesis draft in latex, presentations in open office, posters in scribus, and figures and result data. I would like to put ...
3
votes
1answer
272 views

Git subtree tags

I want to use subtree merges to pull a remote project into a directory in my own git tree. I followed the instructions here: using subtree merge But I'm not sure how to checkout a tag. I imagine ...
3
votes
2answers
2k views

Find all subtrees in a tree matching a given subtree in Java

I am writing code in Java that uses an unordered, rooted tree where each node may have any number of child nodes. Given a tree T and a subtree S, I want to be able to find all the subtrees in T that ...
3
votes
4answers
280 views

Traversing a unidirectional tree efficiently

I've got a unidirectional tree of objects, in which each objects points to its parent. Given an object, I need to obtain its entire subtree of descendants, as a collection of objects. The objects are ...
2
votes
3answers
99 views

Using git for plugin development

Similar questions to this have already been asked, although they're not exactly what I'm trying to do. At first I thought I needed a git submodule, then to set up a superproject and then a sub tree ...
2
votes
1answer
293 views

Finding the smallest subtree

Given a graph of n nodes that are all interconnected on a coordinate plane, what's the best way to find a subtree of minimal distance that contains m nodes? The only solution I've found to this ...
1
vote
1answer
31 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
1answer
93 views

Select root node from subtree (PostgreSQL ltree) query, which returns several descendants

Is there a simple way to select the root node of a subtree (PostgreSQL ltree) from a query which returns (potentially) several descendant nodes of that same subtree? I've implemented a rather verbose ...
1
vote
1answer
84 views

subtree with networkX

In networkX, I have a tree as DiGraph(). #!/usr/bin/python # -*- coding: utf-8 -*- import networkx as nx t = nx.DiGraph() t.add_edge(1,'r') t.add_edge(2,'r') t.add_edge(3,'r') t.add_edge(4,2) ...
1
vote
0answers
51 views

How does git find subtree, when we use subree merging strategy?

How does git find subtree, when we use subtree merging strategy? I find only one mention here: "It actually guesses the subtrees that you want to merge. Usually, this magically turns out to be ...
1
vote
1answer
1k views

Boost 1.46.1, Property Tree: How to iterate through ptree receiving sub ptrees?

First of all I shall say that I think I got how it should be done but my code will not compile any way I try. I based my assumption on this official example of empty ptree trick. There you can find ...
1
vote
1answer
130 views

Creating a BST from an array

I need to create a binary search tree in the following (strange) way: I am given an array (A[n]). A[1] becomes the root of the tree. Then, I insert A[1]+A[2] to the left subtree (subtree1, used ...
1
vote
4answers
109 views

Is it possible to write a truly generic disk-baked B+Tree implementation?

I wrote a generic in-memory B+Tree implementation in C++ few times ago, and I'm thinking about making it persistent on disk (which is why B+Tree have been designed for initially). My first thought was ...
1
vote
1answer
164 views

“submodules” in git: braid or subtree or something else

To include a few external git repositories in my "main" repository, there are a few options: submodules braid subtree The first seems to be advised against by basically everybody. The second and ...
1
vote
1answer
272 views

git merge: remote repo exists in a subdirectory

I'm trying to convert an old CVS repository tracking a vendor branch to git, and I'm running into a merge issue. The repository is structured like this: dir1/ dir2/ dir2 comes from the upstream ...
1
vote
0answers
134 views

git subtree pull says that the working tree has modifications, but git status says it doesn't. What gives?

If I do this in one of my repositories: git subtree pull --prefix=frameworks/AquaticPrime --squash AquaticPrime I get this: Working tree has modifications. Cannot add. If I do this (in the same ...
1
vote
4answers
222 views

Is there a faster way to get subtrees from tree like structures in python than the standard “recursive”?

Let's assume the following data structur with three numpy arrays (id, parent_id) (parent_id of the root element is -1): import numpy as np class MyStructure(object): def __init__(self): """ ...
1
vote
1answer
148 views

Procedure for cloning Git repos that use subtree

I'm using Git's subtree command to pull a couple of libraries in to a project. If I then clone the project in the normal way, I end up with all the code that I need, but I lose the subtree ...
1
vote
2answers
272 views

only parse a specific subtree of an XML file

I have a massive XML file. However, I'm only interested in a single small subtree of this massive tree. I want to parse this subtree, but I don't want to waste time parsing the entire massive tree ...
1
vote
1answer
762 views

Using Git how to merge a subtree from remote branch

Subtrees in Git work nicely although some git commands remain to be supported for subtrees. Here's the question: How to make the subtree pull from a different remote branch like "stable" or ...
1
vote
3answers
223 views

Finding the most frequent subtrees in a collection of (parse) trees

I have a collection of trees whose nodes are labelled (but not uniquely). Specifically the trees are from a collection of parsed sentences (see http://en.wikipedia.org/wiki/Treebank). I wish to ...
1
vote
4answers
291 views

Summing up all nodes

This may be a simple fix - but I'm trying to sum together all the nodes (Size property from the Node class) on the binary search tree. Below in my BST class I have the following so far, but it returns ...
1
vote
3answers
1k views

LDAP entire subtree copy

I am actually new to this forum and I kept trying for a few days to find an easy way to copy an entire LDAP subtree to another tree. Since I couldn't find anything useful, i thought of dropping a ...
0
votes
0answers
18 views

Create Template of Git Subtree Repository for simple reuse

Recently i had extensive use of git subtree in a project. Works all really fine. Now it turns out, that this project will be reused a lot of times, whenever i need this kind of project for a ...
0
votes
1answer
56 views

Subtrees of Original Tree

I am having problems when I am attempting to : (1) find the largest info field in the left sub-tree of the root of the original tree (2) find the smallest info field in the right sub-tree of the root ...
0
votes
1answer
149 views

web page change detection

Currently i am doing my project/thesis for the last semester, and i thought of doing it on "detecting the webpage changes in web". I have read two paper on this topic but i have some confusions 1. in ...
0
votes
1answer
97 views

How to split local changes from main project and subtree libraries

In my project I have 3 subdirectory with library projects merged by subtree strategy. Suppose I checkout master branch and make changes in main project as well as in libraries files. I can't checkout ...
0
votes
2answers
486 views

TinyXML Iterating over a Subtree

Does anyone have code to iterate through the nodes of a subtree in TinyXML? IE: Given a parent, iterate through all its children and all of its children's children?
0
votes
1answer
202 views

Creating subtree from tree which is represented in xml - python

I have an XML (in the form of tree), I require to create sub-tree out of it. For ex: <a> <b> <c>Hello</c> <d> <e>Hi</e> </a> Subtree ...
0
votes
1answer
115 views

switch subtree to different remote branch

Consider this part of a repository of mine: / myproject django -> django/master (django/django @github) ... other dependencies django is a subtree that I merged following this howto: How to ...
0
votes
2answers
419 views

git checkout remote branch shows extraneous files?

master branch has these files and folders (simplified): C:\Local\TickZoom\Project>ls file.txt name.txt public public branch is tracking a vendor repository and has been subtree ...
0
votes
1answer
133 views

How do I find a matching subtree?

I have a large binary tree, T. T "matches". Some number of subtrees of T will also match. In fact, the matching subtrees need not even be full subtrees: they can be truncated, too. By truncated ...