Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

32
votes
3answers
5k views

Changing remote repository for a git submodule

I've created a git repository with a submodule in it. I'm able to tell the submodule itself to change its remote repository path, but I'm not sure how to tell the parent repository how to change the ...
16
votes
4answers
4k views

Howto extract a git subdirectory and make a submodule out of it?

I started a project some months ago and stored everything within a main directory. In my main directory "Project" there are several subdirectories containing different things: Project/paper contains a ...
15
votes
2answers
3k views

Why is git submodule update not automatic?

When switching branches with git checkout I would assume that most of the time you would want to update your submodules. In what situation do you not want to update submodules after switching? What ...
14
votes
3answers
3k views

un-submodule a git submodule

How do I un-submodule a git submodule (bring all the code back into the core) ? As in how "should" I, as in "Best procedure" ...
13
votes
2answers
835 views

Why does Python's __import__ require fromlist?

In Python, if you want to programmatically import a module, you can do: module = __import__('module_name') If you want to import a submodule, you would think it would be a simple matter of: module ...
12
votes
2answers
4k views

How do I manage conflicts with git submodules?

I have a git superproject that references several submodules and I am trying to lock down a workflow for the rest of the my project members to work within. For this question, lets say my superproject ...
11
votes
2answers
283 views

Git submodules, switching branches, and the recommended way to include external JS dependencies (oh my)

I have a Ruby on Rails project (versioned with git) that includes a number of external JavaScript dependencies that exist in various public GitHub repositories. What's the best way to include those ...
11
votes
4answers
5k views

Git - how to track untracked content?

See below the solid line for my original question. I have a folder in my local directory that is untracked. When I run git status, I get: Changed but not updated: modified: ...
10
votes
2answers
2k views

How do I move an existing git submodule within a git repository?

I would like to change the directory name of a git submodule in my git superproject. Lets suppose I have the following entry in my .gitmodules file: [submodule ".emacs.d/vimpulse"] path = ...
9
votes
2answers
1k views

Git Submodule to a subfolder

In svn you can link a repository to any folder in another svn repository. I'm wondering if there is a similar feature for git? Basically I want a git submodule inside my repository, but I want the ...
8
votes
1answer
300 views

Why hg always commit a git submodule, even if it hasn't changed?

I have a hg repository, with a hg subrepository, which has some git submodules. (I know this sounds completely insane, but it's working with svn repos in google code, in libs in github and modules in ...
8
votes
1answer
2k views

git submodule from Hg repo?

I have a very old project that includes the source from another project directly, instead of linking it as a library. Back in the bad days, when I was keeping everything in CVS, I had the external ...
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 ...
6
votes
2answers
871 views

Git will not init/sync/update new submodules

Here's part of the contents of my .gitmodules file: [submodule "src/static_management"] path = src/static_management url = git://github.com/eykd/django-static-management.git ...
6
votes
2answers
750 views

Are git submodules the only safe way to have working copies within working copies?

In my scenario, I have a program that analyzes data input files and produces other data output files. I want to version control the program, and I want to version control the data files, and as a ...
6
votes
5answers
3k views

Projects within projects using Git

How do I set up a Git project to contains other projects? eg. I am working on an online mapping app. We developed a GPS tool together with an outfit in SF. We simultaneously developed a Python ...
5
votes
2answers
201 views

Why does adding an existing repo as a submodule modify .git/config?

If I add a submodule that does not currently exist, no submodule information is added to .git/config. $ mkdir testing $ cd testing $ git init $ git submodule add git@git.server:submodule.git $ cat ...
5
votes
3answers
381 views

How can I get a git submodule's associated commit ID from a past commit in the parent clone?

Is there a way, short of actually checking out the parent commit, to determine a submodule's SHA-1 commit ID based on a commit ID in the parent clone? I know I can find the currently associated SHA-1 ...
5
votes
2answers
547 views

How to add a git repository as a shared dependency of another git repository?

I need something akin to submodules, but which exist outside the main repository as a dependency. Here's the problem: I'm trying to use Git (in a REALLY awkward way) to manage design files for a ...
5
votes
3answers
6k views

How to apply a git patch from one repository to another?

I have two repositories, one is the main repo for a library, and the other is a project using that library. If I make a fix to the in the subservient project, I'd like an easy way to apply that patch ...
4
votes
2answers
115 views

How to work with submodules and n-tiers git repository strategies

We are migrating to git. We have a large number of modules that make up our products, some of them are shared between products. The product is represented by a "thin" super repository ...
4
votes
1answer
339 views

git submodule merge conflict: how to visualize?

I was pretty happy when I found out lately about git submodule summary which shows me nicely by which commits the checked out commit of a submodule is ahead or behind the reference in the ...
4
votes
2answers
486 views

Git subprojects?

I'm working on a couple of different Joomla add-ons but want to keep them as separate git repos as they have different development teams (and even organisations). However, I'd also like to keep them ...
4
votes
1answer
287 views

What is the best way to write a git update hook that rejects invalid submodule commits?

I am attempting to write an update hook for git that bounces if a submodule is being updated to a commit ID that does not exist in the submodule's upstream repository. To say it another way, I want to ...
4
votes
2answers
768 views

Moving submodules with Git

Is there any way to move submodules within your superproject without removing them first and re-adding them ?
4
votes
2answers
170 views

How do I adapt my svn:externals strategy to git submodules?

I'm having trouble figuring out how to change my mindset to git and have run in to the following problem. I have the situation where we have a shared engine and multiple projects that use the engine. ...
4
votes
2answers
154 views

How to update a submodule in git to the HEAD commit in that external repo

I had problems finding the answer to this so I am posting it for posterity. The situation is, you have a git repo with a submodule (similar to an svn external). You want to update that reference to ...
4
votes
1answer
736 views

What is the advantage of using git submodules over having a repo inside another repo with a gitignore?

We've been looking into git submodules and we are wondering what advantage (if any) is there in having a repository using submodules verses having a repository within another repository with a ...
4
votes
1answer
1k views

To show external code dependency in Git by a submodule

Solved Problem: to show external code dependency by submodules: Thanks to VonC! Current Problem: to have a submodule without duplicate contents in two folders A temporary solution to the current ...
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
1answer
77 views

Confused about Python sub-sub-packages

as the title says, I am confused about sub-subpackages. My package structure is the following: draw \ __init__.py base \ __init__.py utils.py events.py ...
3
votes
2answers
97 views

Git Submodules with Heroku

The Problem I have a Rails 3.1 app on Heroku which will soon require a bunch of (3rd party) submodules (some of which have submodules). Unfortunately, Heroku lacks submodule support. One suggestion ...
3
votes
3answers
72 views

Submodule importing primary module

First of all, my apologies if this question has already be asked elsewhere. I really searched for it, but didn't find anything. The situation is the following: In a folder mod, I have the files ...
3
votes
1answer
129 views

How do I init/update a git submodule in a working tree after pushing to a bare working directory?

I have a git repository with an attached working tree that I'm pushing to a bare repo on a remote. The repository includes a submodule. At the remote end: I check out the repo to a working tree git ...
3
votes
1answer
259 views

How to setup/import a multi maven module SVN-connected project in Eclipse the best way?

I use Eclipse (3.4.2*), m2eclipse (0.9.8), Subversive (0.7.9) and SVNKit (1.6.10) on a Windows 7 64-bit PC. Can someone give some advice on how to set up (import, really) a multi module maven project ...
3
votes
1answer
267 views

git submodule foreach: execute read

Is it possible to execute a read inside a git foreach? git submodule foreach 'read -p "test"; echo $REPLY' does not work at all as the read gets the input from git itself - which is the objname and ...
3
votes
1answer
466 views

How to add a git repo as a submodule of itself? (Or: How to generate GitHub Pages programmatically?)

I want to start using GitHub Pages for my project's website. This simply requires a branch (subtree) named gh-pages in the repo, and serves up its content. The problem is that part of the website ...
3
votes
1answer
189 views

Git: Merging and Submodules

Lets say I have two branches in RepoX called BranchA and BranchB. RepoX also has a submodule called SubmoduleY. BranchA has SubmoduleY at revision 'abc', BranchB has SubmoduleY at revision 'def'. ...
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
4answers
241 views

Help Setting Up Perl Module Structure

I'm having trouble figuring out how to structure Perl modules in an object oriented way so I can have one parent module with a number of submodules and only the specific submodules that are needed ...
3
votes
1answer
771 views

Git commit to common submodule (master branch)

I've two or more projects (let's call them ProjectFoo and ProjectBar) having some common code that I put in a submodule. My understanding is that if I commit changes to a submodule from within ...
3
votes
1answer
104 views

Python import inconsistent behavior

I have a py file like this, which errors out. from world import acme def make_stuff_happen(): acme.account.foo() # Works acme.subscription.bar() # FAIL: "module 'object' has no ...
3
votes
2answers
424 views

create a git repo for project skeleton

I created a custom project skeleton as a start for my django projects, hosted on a public repo at github. Id like to use this as root folder for my new, public and privates projects, also hosted ...
3
votes
3answers
4k views

Unable to `git submodule foreach git pull`

This question is based on this thread. My .gitmodules is at my Home [submodule "bin"] path = bin url = git://github.com/masi/bin.git My folder -structure at my Home: ~ |-- ...
3
votes
1answer
466 views

git submodules: ln -s

How can I create a directory link that will survive git submodule update? Given the following example directory structure: proj |-- lib3 | `-- submod | `-- lib `-- lib I created a soft ...
3
votes
2answers
789 views

How do you handle deploying rails applications with submodules?

I recently turned a couple of my plugins into submodules and realized that when you "git clone" a repository, the submodule directory will be empty. This makes sense for co-developers to initialize ...
3
votes
2answers
656 views

Radiant extensions on Heroku?

Anyone have any experience yet getting Radiant CMS extensions to actually make it onto a heroku instance? I have tried removing the submodules and adding the files back, but haven't really had much ...
3
votes
2answers
3k views

How to update a git repo containing a submodule?

After some time I wanted to update my git repo, and then something went wrong. What is the proper way out of this situation? mblsha@siruba:~/src/psi/ $ git status iris: needs merge # On branch master ...
2
votes
2answers
53 views

GIT, Private Submodules, and PHPFog

I am trying PHPFog as a host, and I really like how it works. I'm having an issue, however, with a recent project I pushed. The project contains a submodule, which PHPFog says it supports, however ...
2
votes
1answer
45 views

what's the proper way to work with Git Submodules

I have git projects that share a common library as a git submodule. When I make any changes to a project, I always create a git branch to do my work in. After testing and given another set of eyes, I ...

1 2 3