Tagged Questions

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 ...
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 = ...
6
votes
2answers
870 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 ...
5
votes
2answers
200 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
378 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
546 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 ...
4
votes
2answers
114 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
2answers
482 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 ...
3
votes
1answer
461 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
765 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 ...
2
votes
1answer
42 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
2answers
322 views

Git submodule management strategy

We use GIT to manage our project. Each project has a "core" (like a framework from who we'll built the project) So each project has at least 2 remotes branches: 1 repository for that core ...
1
vote
1answer
70 views

Git submodules using relative urls

I use git (TortoiseGit 1.7.5.0) and have a repo with submodules, which are referenced via absolute paths in a manner: [submodule "common/sub"] path = common/sub url = ssh://localhost/lib/common/sub ...
1
vote
1answer
94 views

'Git could not checkout' error is causing problem while deploying an app on engineyard

I'm trying to deploy an app on engine yard. I'm using rails 2.3.5 and ruby 1.8.7 When I try to deploy it, ~> Deploying revision 481f05e emergency commit :: running git checkout -q ...
1
vote
1answer
105 views

switching a subdirectory managed by git to a submodule

We used to have a local hack of delayed_job in a Rails app, in vendor/plugins/delayed_job. It was installed as a one-time event and checked into git in the main app repo. Now we decided to fork ...
1
vote
1answer
187 views

Git submodule from just a directory of another repository

Is it possible to create a submodule that does not link to a repository directly, but to a directory inside it? For example, let fw.git be a framework repository, with these dirs: |fw.git \---|test ...
1
vote
2answers
539 views

git submodule, ignoring the wrong directory

I am new to git but have spent a good deal of time reading through documentation and gotchas on git submodules before trying them. I am having a problem that I feel -- probably naively -- is a bug in ...
1
vote
1answer
89 views

How can I do git checkout on a repository with submodules?

Suppose I have a repository X with a sub module A. Now suppose I want X to have two branches: master and development. I want master to have a different revision of A than development does. How can ...
0
votes
2answers
49 views

git submodules as part of a build

I am trying to setup a git repository with a submodule repository inside it. Lets call the 2 repos: Super & Sub for this example. So I initialized the Super repo then did a git submodule add of ...
0
votes
1answer
289 views

git submodules - another puzzle - reference is not a tree

A developer here ran the steps we recommend for git usage, and has lost a submodule commit. I understand that this error means that she pushed in the super project but not in the submodule, but she ...
0
votes
2answers
195 views

git add remote in submodule

the .gitmodule file have the list of submodule url and path, similar to this [submodule ".vim/bundle/subRepo"] path = .vim/bundle/subRepo url = https://git.com/sub/repo and in the ...
-5
votes
2answers
37 views

I have a ruby project that needs a submodule from github [closed]

I have a typical ruby project and I would like to include a submodule within that project. The submodule lives on github. How do I use the git submodule command to include the submodule in my projects ...