Tagged Questions
1
vote
0answers
16 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 ...
2
votes
1answer
56 views
different push/pull urls for git submodule
I'm using the git superproject pattern in a large project which is deployed by a Teamcity build agent which does not have a repository account, however the repository is set up to allow anonymous ...
3
votes
1answer
43 views
How do you stop a user from committing to a submodule in git?
Let's say you have a parent project and submodule.
There is a user who has read/write permission to the parent project but only read permission for the submodule.
How do you stop the user from ...
0
votes
1answer
40 views
How to checkout old git commit including all submodules recursively?
I've been searching all over for this and somehow haven't seen it mentioned in a single blog post or SO question.
I have a git repo with multiple submodules. One of those submodules has multiple ...
1
vote
3answers
42 views
Git submodules are being -dirty?
I just cloned a repository as a submodule into one of my projects. Al is well and working, but all of a sudden i get this message when I do git status;
# Changes not staged for commit:
# (use "git ...
2
votes
1answer
34 views
updating a submodule to most recent commit
I have added a couple of sub-module to my xcode project. How do I upgrade those libraries? For now the way I do it is by going to my Third Party folder, and inside say I have AFNetworking and I just ...
4
votes
1answer
731 views
Github submodule automatically in download
I have a github project (Link) and use a other project ans submodule.
This submodule was also in the .gitmodules, the code below:
[submodule "inc/tha"]
path = inc/tha
url = ...
0
votes
2answers
336 views
Xcode Git Submodule Commit Issue
What I did
I made a new Single Page App project in my application called "parent".
I made a new Static library project called "child" and I've Added it as a git submodule in my parent project ...
0
votes
1answer
68 views
Workflow for many interdependent submodules
At my company we have several pseudo-independent teams, owning several repositories each (but sometimes editing code from another team). Most of the modules are interdependent, although the modules ...
1
vote
1answer
174 views
how to update submodule url in all commits
The Use Case is that i have to move certain repositories to a new server. So these repositories get a new url.
The Parent project which reference these sub-modules needs to be updated with the new url ...
1
vote
1answer
77 views
How to push the forked repository which has submodule?
There is a A project and the A project has a submodule S
A
|-S
|-B
|-C
A repo: git@github.com:benjamin/A.git
S repo: git@github.com:owner/S.git
To contribute some bug fix, I forked the A ...
1
vote
1answer
204 views
Push submodule changes in Git
I have a Git submodule that I have successfully cloned in to my main project. However, when I make changes in the submodule and try to push them back to the original submodule repository, Git refuses ...
0
votes
0answers
63 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 ...
2
votes
1answer
199 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 ...
-5
votes
2answers
59 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 ...
3
votes
1answer
1k 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
...
0
votes
2answers
117 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 ...
1
vote
2answers
366 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 ...
0
votes
1answer
742 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 ...
4
votes
2answers
285 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 ...
3
votes
2answers
804 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 ...
6
votes
1answer
1k 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 ...
6
votes
2answers
525 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 ...
4
votes
2answers
832 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
2answers
1k 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 ...
8
votes
1answer
11k views
Can I add a username & password to git clone using the --recursive option (for submodules)?
I am using git to clone a repo via https thus:
git clone https://username:password@alocation/git/repo.git
This is fine but it has a large number of subrepos to clone as well so I am using the ...
12
votes
2answers
812 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 ...
7
votes
1answer
1k 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 ...
54
votes
6answers
11k 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
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 ...
3
votes
1answer
1k 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
...
18
votes
1answer
4k 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 ...
7
votes
2answers
1k 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 ...
15
votes
5answers
4k 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
...
1
vote
2answers
962 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
157 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 ...