Tagged Questions

246
votes
3answers
23k views

How do I remove a git submodule?

And by the way, is there a reason I can't simply git submodule rm whatever?
85
votes
9answers
9k views

Git - easy way pull latest of all submodules

We're using git submodules to manage a couple of large projects that have dependencies on many other libraries we've developed. Each library is a separate repo brought into the dependant project as ...
45
votes
3answers
9k views

Git submodules: Specify a branch/tag

How does git submodule add -b work? After adding a submodule with a specific branch, a new cloned repo (after git submodule update --init) will be at a specific commit, not the branch itself (git ...
41
votes
5answers
10k views

Git submodule head 'reference is not a tree' error

I have a project with a submodule that is pointing to an invalid commit: the submodule commit remained local and when I try to fetch it from another repo I get: $ git submodule update fatal: ...
30
votes
3answers
4k views

git clone — submodule

I'm trying to put a submodule into a repo. The problem is that when I clone the parent repo, the submodule folder is entirely empty. Is there any way to make it so that 'git clone parent' actually ...
30
votes
1answer
13k views

git submodule update

I'm not clear on what the following means (from git update docs): "...will make the submodules HEAD be detached, unless --rebase or --merge is specified..." how does --rebase/--merge change ...
27
votes
2answers
3k views

How do you work with a git repository within another repository?

I have a git media repository that I'm keeping all of my javascript and css master files and scripts that I'll use on various projects. My question is if I create a new project that's in it's own git ...
23
votes
2answers
3k views

Git submodules workflow

In my project I need to use third party code, stored in several Git repositories. My project is also stored in (separate) Git repository. There are several people working with me on the main project, ...
14
votes
4answers
4k views

Git nested submodules and dependencies

Let's say I have four projects named Core, A, B, Super. The dependency tree is like this: Super ---> Core |-> A -> Core |-> B -> Core I want each project to be ...
13
votes
3answers
470 views

How to Migrate Git Projects to Be One Project with Subprojects

I have a number of projects that are in separate Git repositories right now. They are, likewise, in separate eclipse projects (because I was unable to use parent projects using the Maven plugin for a ...
13
votes
6answers
958 views

Sharing code between two or more rails apps… alternatives to git submodules?

We have two separate rails_app, foo/ and bar/ (separate for good reason). They both depend on some models, etc. in a common/ folder, currently parallel to foo and bar. Our current svn setup uses ...
12
votes
3answers
1k views

Git shallow submodules

Is it possible to have shallow submodules? I have a superproject with several submodules, each with a long history, so it gets unnecessarily big dragging all that history. All I have found is this ...
11
votes
4answers
443 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, ...
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
3answers
865 views

Rename a git submodule

Is there some easy way to rename a git submodule directory (other than going through the entire motion of deleting it and re-adding it with a new destination name). And while we are at it, why is ...
10
votes
1answer
2k views

How to get rid of git submodules untracked status?

Can't seem to get rid of untracked content in Git's submodules. Running git status yields: # On branch master # Changes not staged for commit: # (use "git add ..." to update what will be ...
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
3answers
2k views

Update git submodule

I have a project with a git submodule. It is from an ssh://... URL, and is on commit A. Commit B has been pushed to that URL, and I want the submodule to retreive the commit, and change to it. Now, ...
9
votes
2answers
932 views

.gitignore files added inside Git submodules

I recently reorganized my dotfiles to live inside a Git repository at ~/Dropbox/dotfiles and I'm using pathogen to bundle all Vim addons inside ~/Dropbox/dotfiles/home/.vim/bundle. These addons were ...
8
votes
2answers
289 views

What is a good workflow for submodule forks

Suppose we have the following repository structure on github: company:project.git \- company:submodule.git A developer in my company forks the company project, making his workspace look like ...
7
votes
0answers
53 views

Is there a way to use a Mercurial repository as Git submodule?

I been happily using submodules to track all the libraries my project depends from. The thing is I'm using a library called core-plot that only has a public mercurial repository. I can probably ...
7
votes
1answer
575 views

How to clone only a folder from a git submodule?

I'm trying to get just a folder from an external github repo to use in my project. I want my project setup to be like this: -my_project -submodule -code.py -MY_README -.git And ...
7
votes
3answers
3k views

Can't get rid of git submodule

I added some Haml templates to my Rails 3 project with git clone git://github.com/psynix/rails3_haml_scaffold_generator.git lib/generators/haml only to find, when I tried to edit some of those ...
6
votes
4answers
135 views

Revert a Git Submodule pointer

I have a git submodule in my main git repo. As I understand it, the main repo stores a SHA value (somewhere...), pointing to the specific commit of the submodule that it is "linked to". I went in to ...
6
votes
2answers
265 views

Git subtree or GitSlave if switch away from Git Submodules?

I feel using Git submodules is some how troublesome for my development workflow. I also learn that Git subtree and gitslave might be the solution after that. Which one is the best option to go? I ...
6
votes
1answer
338 views

Git submodule pull request work flow

I am curious about some best practices. There is a git repo that I would like to include as a submodule in my project. I would also like to contribute to this repo and offer pull requests. I have ...
6
votes
3answers
487 views

How to change a git submodule to point to a subfolder?

Skimming through the SubModule tutorial, I created a submodule out of the boto project. Then, I discovered that I actually need only a subset of this project - specifically, the boto folder. I would ...
6
votes
1answer
5k views

No submodule mapping found in .gitmodule for a path that's not a submodule

I have a project that has a submodule at lib/three20 My .gitmodule file looks like this: [submodule "lib/three20"] path = lib/three20 url = git://github.com/facebook/three20.git I have ...
6
votes
2answers
872 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
6answers
2k views

Git: can I suppress listing of 'modified content'/dirty submodule entries in status, diff, etc?

Somewhen (around the 1.6.x releases, I think) git became aware of changes inside submodules. That only serves to annoy me: $ git status vendor | grep modified: # modified: vendor/rails ...
5
votes
2answers
202 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
4answers
256 views

Git submodules and ssh access

I have some trouble with a git repository that contains several submodules. The super git repository was constructed with the commands mkdir projectname cd projectname git init git submodule add ...
5
votes
2answers
195 views

Can you develop directly in Git submodules?

I have two projects (A & B). They both use project Common. I want to include Common into A & B via submodules because then I can directly tie each commit in A & B to which commit they rely ...
5
votes
2answers
246 views

Git submodules on master

I am new to git submodules, and I notice they always refer to specific commits. Is there any way for a superproject's submodules to always refer to the head of the master branch, so "git submodule ...
5
votes
3answers
382 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
1answer
687 views

Why are git submodules incompatible with svn externals?

There are lots of webpages out there suggesting hackish ways to make svn externals look like git submodules. I have read some accounts of what the difference is, but this doesn't seem very ...
5
votes
2answers
129 views

Reuse a Part of a git Repository

I have the following project setup: Solution A Project 1 (a lightweight component) Project 2 (contains a lot of files and depends on Project 1) Solution A is a single git repository. Then I ...
5
votes
3answers
1k views

Need to handle git-submodules in git-archive

I need to pack git submodules inside of tarball which I create with git-archive. I see that in 1.6.5 git-archive does not support git submodules. I see several scripts to handle this case in the ...
4
votes
1answer
123 views

How to make Git submodules easier for non-programmers?

Our small software shop recently migrated from Subversion to Git, as we programmers found Git better. The migration wasn’t painless, we’re having problems with the submodules feature. My main gripe is ...
4
votes
2answers
88 views

What are best practices for maintaining/testing (mostly Perl) software in separate git repositories with dependencies between them?

I am working on refactoring a large (mostly Perl) codebase. Rather that put everything into one giant git repository, I'd like to group related modules and their tests into separate git repositories, ...
4
votes
2answers
136 views

Git command line - know if in submodule?

Is there any way in git to know if you're in a submodule? You can do thinks like git submodule foreach in the parent directory but I can't seem to come up with a generic way to show that you're in a ...
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
271 views

What are the pros and cons of git submodule and Repo?

It just so happens that we share a library between 3 different mobile platforms. There is much debate within the office on what is the best tool to use to manage this library. Repo (Android) from what ...
4
votes
2answers
134 views

What are the options when working with Git submodules from which commits are made?

At work, we're working on a dozen Java OSGi bundles, each of which has its own git repository. All bundles will be, in the long run, pretty independent from each other, which justifies the individual ...
4
votes
2answers
487 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
2answers
392 views

git repository structure with multiple modules

I have the following situation: Have 4-5 different software modules part of a bigger software project. All of them are set as separate git repos. When i commit a feature, usually it spans more than ...
4
votes
2answers
288 views

Editing a git submodule

Is this possible? Imagine I have projects Parent & Child. Both are git respositories. Child is a submodule of Parent. Can I make edits to the version of Child that is inside Parent & commit ...
4
votes
1answer
1k views

How do I setup my Git repositories for Android development in Eclipse?

I need some help with properly versioning my Android project with Git/Eclipse. I have no problem setting this up with a single Android project. However, I am trying to figure out the proper and ...
4
votes
1answer
193 views

How to handle shared code with Git in this scenario?

I'm currently in the process of trying to switch our version control to Git (from CVSNT). Surprisingly, it wasn't the distributedness or the concept of a staging area that I had problems with. But I ...

1 2 3 4