Submodules allow you to keep a Git repository as a subdirectory of another Git repository.

learn more… | top users | synonyms

6
votes
1answer
441 views

Ensuring relative Git paths

I've moved a Git repository (containing several submodules) to another directory on the local disk. Any git command produces the error: fatal: Not a git repository: <absolute path to ...
3
votes
1answer
301 views

TeamCity - keeping Git submodule up to date?

I have a Git repository that includes a submodule. This repository has various build configurations in TeamCity that are dependent on code on the submodule. Is there a way with TeamCity to detect ...
2
votes
1answer
172 views

jenkins: rebuild main repository with the latest commit from submodule when submodule is updated

could you please help me with workflow in jenkins. we have main repository rep1 with submodule s1. submodule has been added to rep1 with specific commit number. we frequently commit to s1. but jenkins ...
2
votes
1answer
112 views

How do I remove a submodule from my github repository?

I happened to change a name of a directory within my local repository and then proceeded to push this change up to my github repository. In effect, it caused this repository to turn into a git ...
2
votes
1answer
45 views

List repositories that use specific submodule

I have several git repositories (projects), which use other repositories ("components") as subodules: Project 1 - Component A - Component B Project 2 - Component B - Component C Project 3 - ...
2
votes
1answer
74 views

Subdirectory from github as a git submodule

A lots of repos for python on github use project structure for setuptools (for example https://github.com/omab/django-social-auth). But I want to make folder with module core to my project as a ...
2
votes
1answer
117 views

Using Git Sub Modules to manage 3rd party dependencies?

I'm currently running a test to see how Git sub modules work in the hope that I can use them to manage 3rd party dependencies. In my local test I have a folder with my main git repo in it. I then ...
2
votes
1answer
212 views

initialize submodule using git

I added this to my application: https://github.com/fpotter/juggernaut-cocoa In the instructions, it says: If you have git 1.7+ git clone git://github.com/fpotter/juggernaut-cocoa.git --recursive ...
2
votes
1answer
643 views

No submodule mapping found in .gitmodules

I'm trying to add a submodule to a git repo like this: git submodule add git://repo my/dir/here git submodule init And I get this error: No submodule mapping found in .gitmodules for path ...
2
votes
1answer
202 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 ...
2
votes
1answer
209 views

Git submodule untracked after merge of “previous” branch

My git repos contains a master branch with the development version of our application and a branch for each released (or currently tested) version of the application. Since the last branch we added a ...
1
vote
1answer
29 views

How to structure dependent projects on github?

I recently put some of my projects on github to make them open source but I'm having trouble understanding how to structure the projects properly. I've got a Core project and another project that ...
1
vote
1answer
29 views

git submodule not fetched by repo checkout

I'm a git newbie. My git repo includes submodule references. I have a post-receive hook to checkout the repo contents to my web directory: #!/bin/sh GIT_WORK_TREE=/home/www/hello_world_php git ...
1
vote
1answer
62 views

Convert git repo to submodule

So I am fairly new to the whole git topic. But what I am trying to do is syncing my dotfiles across multiple machines. I know there are plenty of tutorials out there and I got the basic concept. But ...
1
vote
1answer
26 views

Adding to a git submodule locally

So I have a git repository with all my commonly used wordpress plugins. I also have a wordpress environment with themes and plugins that are in git. What I want to do is have the common plugins as a ...
2
votes
0answers
51 views

Several urls for a submodule?

Suppose you have a git project with a submodule which can be accessed via several urls, say $url1 and $url2 (which are suppored to be synced). In the team, some people don't have access to $url1, and ...
1
vote
0answers
17 views

Git submodule with same name

I am trying to make repo like: server \ module_1 \ library \ module_2 \ library Whereis modules its stand-alone programs, using the same library. They should work/compile without server ...
1
vote
0answers
39 views

Git submodules, not sure if its the right thing to use

So I have a a repo with my nodejs server. We also have a webapp that runs as a stand alone webapp only as a single html file on enterprise servers. For our cloud version we need ot run this with a ...
1
vote
0answers
71 views

Git deploy hook ec2 with submodules

I created instance on aws running a node application. I installed supervisord to keep the node application up and running. Deployment takes place trough git with a deploment hook.\ The structure is ...
1
vote
0answers
17 views

Why are get submodules not on any branch?

I have a project with git submodules. I do a checkout with git clone --recursive. When I do this, I get this error on the submodule: $ cd submodule $ git status # Not currently on any branch. $ ...
1
vote
0answers
105 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
0answers
47 views

Is it possible to hard-link local git submodule repositories?

We currently have a fairly large git repository with submodules (about 10GB), and cloning it from the server takes quite some time. I want to keep a local copy in our project directory and use it as ...
1
vote
0answers
68 views

How can this commit vanish from git history?

I am unable to understand why a particular commit seems to have just vanished from my git history even though I can see it from a previous commit in my branch. You can see that master contains the ...
1
vote
0answers
88 views

Git merge while switching to submodule

We are using Qooxdoo framework in our application. For now, it's copy is stored in our Git repository in the root folder "qooxdoo". We have decided to replace that with submodule pointing directly to ...
1
vote
0answers
163 views

NPM dependancy is not creating git submodule

I'm running grunt.js. One of it's dependencies is node-jshint which has the actual jshint files added as a submodule. (I'm using my own fork of node-jshint so that I can do some modifications to the ...
1
vote
0answers
99 views

In git, how do we add a sub-module to a project, but only pull in a sub-directory of the submodule?

So we have a submodule:   App-Models/src/models/question.rb And our main rails application is: App-Rails (which uses submodule App-Models) cd App-Rails git submodule add git@url:SC-Models app/models ...
1
vote
0answers
98 views

How can I call a rake task on a git submodule?

I have a project including a number of vendored javascripts, e.g. jQuery. I'm including these scripts as git submodules. However, for my build process, I need the built script, not the whole ...
0
votes
0answers
5 views

Git submodule new version update

I had forked a MapBox-ios-sdk and make some changes to it. A newer release of the sdk is here and I merged my the changes into my fork. MapBox-ios-sdk also incorporate SMCalloutView which is a ...
0
votes
0answers
16 views

How to manage local changes in third-party repositories kept as git submodules

Like many, I have included Jake Wharton's excellent ActionBarSherlock library into my project. To ease the work from multiple computers I decided to include it as a subproject into my git project. ...
0
votes
0answers
6 views

submitting changes to submodules with EGIt

I just installed EGit 2.3.1 on Eclipse Juno. I checked out this GitHub project: https://github.com/erelsgl/machine-learning which has two submodules - "perceptron" and "classifier". I made no ...
0
votes
0answers
24 views

Why is Jenkins getting Authentication Failed error for git submodule update?

I have a Jenkins job that pulls from a BitBucket repo that was working fine, and still is. However, I've added a submodule and Jenkins is choking on that. Here is a clip from the Jenkins console ...
0
votes
0answers
13 views

Syncing git submodules across different repos on same machine

In a one-machine setup with two git repositories that share one or more submodules, what is the best way to have those submodules sync up without having to add/commit/push in one and pull in the other ...
0
votes
0answers
21 views

git: what to check in after turning a subdirectory into a submodule?

I've turned the 'media' subdirectory in an existing git repo into a submodule, following these instructions and using subtree: http://stackoverflow.com/a/1307969/194000 My next question is this. The ...
0
votes
0answers
27 views

Git add remote for each submodule query

How can I add remote for each git submodule? git submodule foreach "git remote add ci user@server.com:~/ci.git" doesn't work for me.
0
votes
0answers
13 views

GitX - Disabled View Buttons

My GitX works fine for any main repo I might be working with. However, when my main repo contains submodules and I open GitX at the submodule directory, the 'View' buttons are disabled. This is ...
0
votes
0answers
67 views

How do I change build settings of an Xcode project that is a git submodule

I have an Xcode project with an iOS app that uses another project, say Rest Kit, that is actually a Git submodule. I want to effect a change in the build settings of RestKit, for good reason, when I ...
0
votes
0answers
97 views

How to get intellisense in netbeans 7.3 for php in subprojects / git submodules

i have an problem with netbeans intellisense. i use php5, git and git submodules in my main project intellisense work very well. In libaries, which are own netbean projects included as ...
0
votes
0answers
70 views

Git/GitHub: One project, two repos?

I'm attempting to establish a portfolio of some projects I've worked on in GitHub. The problem that I'm running into is that my class projects are already associated with a different Git repository ...
0
votes
0answers
34 views

Move from cloned repositories to git submodules for bundles in .vim?

I checked out the different bundles for my vim config via git clone. however I'd like them to be submodules instead. Is it possible automatically move the cloned repositories to be submodules?
0
votes
0answers
75 views

Git submodules, shared code and XCode

I have a question regarding shared code and XCode using git submodules. So, I have Consumer app, having it's own repo. I also have a MyLib app, which has its own repo . The MyLib app contains some ...
0
votes
0answers
21 views

Hudson does not init/update nested git submodules

Hudson 2.0.0 (I know it is quite old Hudson version but for some reason we can't update at the moment), proper git plugin installed, does not seem to init/update nested submodules. Is there any ...
0
votes
0answers
49 views

Error compiling after adding SecureUDID as git submodule to existing project

I've added SecureUDID to an existing project as a git submodule, however, when I try to build, I get this error: Undefined symbols for architecture i386: "_OBJC_CLASS_$_SecureUDID", referenced ...
0
votes
0answers
26 views

git submodule back to detached state

I have a submodule in my project. I wanted to update it to the latest from the remote. cd submodule git checkout master git pull cd .. git commit -a The only thing I've noticed is that the ...
0
votes
0answers
26 views

client/server testing and git submodules

I've never used git submodules before, but I'm wondering if it's appropriate to use them for testing out a client library I'm writing. My thoughts are that the client test suite could mount the ...
0
votes
0answers
48 views

Git Submodules acting strangely

I have a super project, I have added a submodule to the project, I have renamed the directory that the submodule is in and edited the appropriate files. Anyway, After doing a large amount of work I ...
0
votes
0answers
23 views

Restricting git-submodules with gitosis?

For a commercial software project with multiple parts, I would like to implement a versioning scheme by including the parts as git-submodules in a superproject, and then tagging certain commits as ...
0
votes
0answers
40 views

How to attach submodules to the git remote repository?

I have many git repos with my project parts, which are not related with each other: x1, x2, etc. I would like to have a summary repo: X, which would include x1, x2, etc. Developers would be able to ...
0
votes
0answers
98 views

Git Submodule would not work. The push does not work

I have been trying to create a submodule in git. After issuing the git submodule init, I see the folders for the submodule. After that I add, commit and try to push those files in the master repo but ...
0
votes
0answers
38 views

Git - Deleted & Irretrievable Files in SubFolder

Issue: Missing / Irretrievable Files after trying to merge Folder 1 into Main Folder My Folder Structure Main Folder ++ Folder 1 Steps (1) I had created a git repository in Folder 1 and ...
0
votes
0answers
64 views

Git workflow for fixed layout projects and relative remotes for submodules

I'm trying to set up a git workflow for the developer team at our company. These constraints apply: The things I want to check in are not the projects themselves (which are binary :-(), but their ...

1 2