Submodules allow you to keep a Git repository as a subdirectory of another Git repository.
0
votes
0answers
24 views
Archiving many old Git projects into a single repo
I've inherited ~150 Git repos at my new job, and my goal is to remove them from the local server where they presently reside and migrate everything into BitBucket.
Alas, most of these repos are only ...
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 ...
0
votes
2answers
17 views
Git submodules not going into repo
I added a submodule to a feature branch of my local repository. I can see the related info in .git/config and .gitmodules. I pushed to the remote. git status shows clean.
When I clone the repo on ...
0
votes
1answer
18 views
Git submodules and rebase
Using git 1.8.1. I have upstream and local repo for git project.It has one submodule (hash A). Then I branch it out locally to branch "feature" (and have hash A submodule).
Pull some changes and ...
6
votes
3answers
1k views
Nested git repositories without remotes (a.k.a. git submodule without remotes)
I have a project of which I am interested in breaking out portions as open-source. I've set up a "main" git repository (say, in a directory "main") and sub-repositories in "main/one", "main/two", ...
2
votes
1answer
20 views
Why won't git ignore a bin folder in my submodule?
Git isn't correctly ignoring a bin folder of one of my submodules. Any ideas why?
Here is git status in the submodule:
MBPR:$ git status
# On branch master
# Untracked files:
# (use "git add ...
1
vote
1answer
23 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 ...
2
votes
2answers
85 views
Git: Creating Git Submodules out of existing repository and reflecting parent changes to the child repository
Please note that I am new to Git.
I have two repos:
Libgdx REPO
gdx-sqlite REPO
The main repository is Libgdx REPO and all of my work goes into this repository, mainly in the gdx-sqlite project. ...
7
votes
1answer
669 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 ...
0
votes
0answers
22 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.
1
vote
1answer
36 views
How do I add files in Git to the path of a former submodule?
I have a project that used to contain a submodule, at path mysubmodule. I installed the latest Git from source (1.8.3-rc2) and ran git submodule deinit mysubmodule. I then deleted the .gitmodules ...
1018
votes
11answers
118k views
How do I remove a Git submodule?
How do I remove a Git submodule?
And by the way, is there a reason I can't simply do
git submodule rm whatever
?
0
votes
1answer
20 views
Git pull from source repository, push to separate test repository's directory
I have two git repos, one for the plain source code of a library I'm writing, and the other which acts like a test environment. I'll call them respectively prod and dev.
Committers pull and push ...
0
votes
0answers
10 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 ...
4
votes
1answer
5k views
git submodule add fatal: Not a Git Repository
I am fairly new to Git and trying my best to find some documentation on this problem to no avail.
Here's my command:
MyUser@MyPlace /e/SourceControl/EventStore (master)
$ git submodule add ...
2
votes
1answer
2k views
No submodule mapping found in .gitmodules for path
When I run
git submodule update
No submodule mapping found in .gitmodules for path 'Classes/lib/AFKissXMLRequestOperation'
But I have no submodule Classes/lib/AFKissXMLRequestOperation in current ...
3
votes
1answer
32 views
Is the git submodule name used for anything other than display?
The .gitmodules file used to track submodules within a git repository normally has a name for each submodule, like this:
[submodule "my-submodule"]
path = foo/bar/my-submodule
url = ...
1
vote
1answer
196 views
Moving a git working copy containing submodules
A recent change in Git changed the way the .git directory is handled when using submodules.
Instead of having one .git per submodule, everything is now in the "root level" .git directory (the one ...
1
vote
1answer
119 views
Error after removing submodule: The following path is ignored by one of your .gitignore files:
I'm getting this error after I've removed a submodule. The path in question is not in my .gitignore file, nor is there anything relevant in my .git/info/exclude file. I don't have a .gitignore_global ...
0
votes
3answers
105 views
How should git submodules be set up for laravel 4 composer packages?
I'm building an app with laravel 4, and am looking to deploy to a cloud server for further testing. The general process I usually do is local > push to github > clone to server.
The problem with this ...
0
votes
1answer
21 views
How to find when submodule was added to Git
I want to know the commit when a specific submodule was added, in other words I want to know the commit where .gitmodules file is modified to add the following
[submodule "submodule1"]
path = ...
0
votes
2answers
44 views
Rebasing a submodule
I have a repository A, having repository B as a submodule.
In an ideal world this should never happen, but let's say, that for some reason, I want to do an interactive rebase in repository B.
If I ...
1
vote
1answer
36 views
Merging Git submodules back while keeping history
We have a repository, in which couple of directories have been extracted as submodules two years ago.
As git submodules cause too much headaches, it was decided to revert the extraction as submodules ...
0
votes
1answer
18 views
How to remove the message “Changes not staged for commit:” for submodule
We used the AFNetworking as the sub module via git-submodule command. After updated in one branch, we always got the message once switching branches.
Changes not staged for commit:
What is the ...
24
votes
3answers
4k 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 ...
2
votes
2answers
58 views
Converting cloned git repositories into submodules
I have a project which is a git repository, and inside that project I have some cloned git repositories.
The directory structure is like this.
main-project
-other_project (cloned git repository)
...
5
votes
1answer
179 views
Multiple Android projects with same GIT submodule
I recently wanted to adopt submodules from GIT with my Android projects but stumbled into some problems.
Backstory
I have multiple projects but many use the same external library (Android ...
1
vote
2answers
52 views
Git submodules in github repo
In my project, im using a third party library. I had git cloned this lib in my project, and then had done git submodule init and git submodule update in the lib folder. I pushed my main project to ...
1
vote
1answer
48 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
2answers
29 views
Git remembers submodule's remote and history even after removing it
I followed How do I remove a git submodule to delete a particular submodule. However, if I try to add a submodule with a different remote at the same path, git ends up checking out the submodule with ...
1
vote
2answers
831 views
git rm -r --cached not removing submodule folder and contents
Solution: remove --cached from git rm -r --cached submodule/name. Scripted for reference.
I'm trying to remove a git submodule based on this SO answer, but the submodule is not being removed.
I ...
1
vote
2answers
229 views
removing a git submodule
I want to remove a git submodule. I found another question that answers how to do it but I had questions about the process.
In my knowledge, removing the reference from .gitmodules should remove it ...
7
votes
3answers
2k views
Can I unpopulate a Git submodule?
Once I run
git update submodule
can I do anything to make it go back to the way it was before init and update?
1
vote
1answer
22 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
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 ...
101
votes
5answers
23k views
How to set up a git project to use an external repo submodule?
I'd like to create a repo which pulls in a remote repo.
For example, let's say jQuery as a submodule:
git://github.com/jquery/jquery.git
What would be the process of creating a repo with jQuery as ...
1
vote
1answer
34 views
How to use mercurial or git subrepositories that are connected to the latest release tag?
I am looking for a solution that would allow me to use subrepositories that are getting not the HEAD and instead a specific RELEASE tag, or if possible the latest tag.
Is this possible, how should I ...
0
votes
1answer
139 views
Working with git submodules/cocoapods
I am working on a project which includes other repositories from Git.
I would like to keep up to date with these repositories. Know what are the latest features, bug fixes etc.
Qu 1) What is the ...
1
vote
1answer
61 views
How to commit changes inside a submodule in Eclipse's eGit?
So Eclipse's git plugin - eGit - has been supporting submodules for a while now (they added support in 1.3 release on February 15, 2012, so over a year now). I just started to use them. I am able to ...
0
votes
1answer
20 views
git remote submodule url doesn't apply to local git repository
I have a git repository that has a submodule with a url that points to a local directory on the machine. (The directory is actually inside the directory of the git repository, but should be maintained ...
226
votes
9answers
48k 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 ...
0
votes
1answer
38 views
git add submodule of remote
I have a submodule in a git remote repository. I cloned the repository before the remote submodule was created.
How can I add the submodule of the remote repository?
I tried the following:
$ git ...
0
votes
1answer
32 views
Git: Find out which branch contains a commit and check it out?
From what I've learned here about submodules, I can now roll my submodules back to the right commit by using
git submodule update --recursive
however, now the submodules are never (rarely?) in a ...
1
vote
1answer
45 views
Git Submodule: Which commit (hash) do I need?
When I roll back my git working directory to a particular commit, the submodule shows as "modified." The submodule is checked in and has no modified files, but it's at different commit than it needs ...
8
votes
1answer
747 views
How to deal with Git submodules on a repo that is converted to Mercurial
Here goes:
$ cat .gitmodules
[submodule "utils/external/firepython"]
path = utils/external/firepython
url = git://github.com/darwin/firepython.git
[submodule "utils/external/textile"]
...
0
votes
0answers
37 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 ...
83
votes
2answers
59k 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 ...
4
votes
1answer
821 views
How to make submodule with detached HEAD to be attached to actual HEAD?
(Solution note, I'll add answer immediately)
When I add a Git submodule to a Git repository like this,
git submodule add ssh://server/proj1/ proj1
git submodule init
git submodule update
the added ...
3
votes
1answer
2k views
how exactly does git submodule work
The .gitmodule file only specifies the module repository url. How does git submodule know which version to download? It seems to be always checking out the latest version. Then, how does developers ...
4
votes
1answer
2k views
git submodule tracking latest
We are moving our (huge) project to git and we are thinking about using submodules. Our plan is to have three different heads in the superproject: release,stable,latest. The project leads will handle ...


