Submodules allow you to keep a Git repository as a subdirectory of another Git repository.
0
votes
1answer
4 views
Use controllers from git submodule in Rails application?
does anyone know if it's possible to use controllers of a submodule in a Rails application? My submodule currently has a few models which work perfectly but I'd need to add one or two controllers ...
0
votes
1answer
14 views
git submodule update specific submodule only
So, updating all my submodules is done by running
git submodule foreach 'git pull origin master'
How do I update a specific submodule, located in say bundle/syntastic, without updating any other ...
2
votes
3answers
18 views
Forked GIT submodule, and changed source URL. But clone still pulls old source URL?
I have a submodule in my git project, which I have made some changes to, and uploaded to my own git server to fork it. I've changed the source URL in the master git repository to the new submodule's ...
0
votes
0answers
30 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
1answer
19 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 ...
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 ...
2
votes
1answer
21 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 ...
0
votes
0answers
23 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 ...
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 ...
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 = ...
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 ...
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 ...
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. ...
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
3answers
106 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 ...
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 ...
5
votes
1answer
181 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
1answer
202 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
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 ...
1
vote
1answer
36 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 ...
1
vote
1answer
64 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
140 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 ...
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 ...
0
votes
1answer
39 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
46 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 ...
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 ...
1
vote
1answer
121 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 ...
1
vote
1answer
20 views
GIT Change Submodule URL in Post-update script
How can I change the URLs of submodules during post-update to point to a new URL?
1
vote
1answer
60 views
Jenkins Git change submodule path
Is there a way to change the submodule path to pull from a different repository during build time?
0
votes
0answers
62 views
github submodule access rights (Travis CI)
Cannot update the git submodule. Got error:
$ git submodule init
Submodule 'build/html' (git@github.com:quadroid/clonejs.git) registered for path 'build/html'
...
$ git submodule update
Cloning into ...
-1
votes
1answer
64 views
SCM for a Large Modular Code Base
I need some help designing a SCM for my codebase. The codebase is fairly complex, so first, I will try to describe it.
The code base is made up of code for many different products, let's say Product1 ...
0
votes
1answer
32 views
git add my remote for pushing submodule
I have a main app that stored in our git. Within that app we are using a third-party component that's hosted on github. We make numerous customizations to this component, and as such felt that to make ...
0
votes
1answer
141 views
Using git submodules with ssh authentication on Openshift
I created a submodule (a bitbucket repo) on my openshift repo.
My current .gitmodules configuration:
[submodule "php"]
path = php
url = git@bitbucket.org:sgtcarneiro/repo.git
The problem ...
1
vote
0answers
56 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
1answer
32 views
Structure of git repos where code shared across repos needs to be in the root of the repo
I'm trying to come up with a reasonably clean way to represent the following in Git:
A base project that contains common code used across a number of projects.
Multiple projects that extend the base ...
2
votes
1answer
46 views
Git :: Split multi-module project into 2 modules and keep history
Currently we do have one large project, constisting of modules A,B,C,D,E. These modules are located within same project repository on github, but in different folders - each module in it's own folder. ...
1
vote
2answers
87 views
git submodule not working after deleting
I have a project with a submodule set up.
A colleague by accident deleted the target folder and made a symlink instead (pointing outside the project folder), committing it.
Now I'm not able to ...
0
votes
1answer
25 views
Adding SVN library to a git repository. Hints? Tips? Do I need to make a submodule for it?
I'm making an iOS app which is in a git repository. I'd like to add the Google Objective C client library, but it's stored via SVN. What's the recommended way to add an SVN project to a git ...
2
votes
2answers
48 views
Git submodules: Is it possible to notify other developers of a change?
Say I fix a bug in a common submodule used by multiple projects.
Is there a way to automatically notify the developers of all the super-projects to update the submodule?
0
votes
1answer
36 views
git submodules and detached HEAD
So, I've been learning a bit more about git submodules, and everywhere that I read tells me that I end up with a detached HEAD after I add my submodule. This makes sense as I want my superproject to ...
0
votes
0answers
55 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 ...
3
votes
1answer
85 views
git init in a git subdirectory
I have a git repo which has some subdirectories:
~/src
~/src/.git
~/src/mystuff
~/src/otherstuff
Now I want to share otherstuff with a friend, I was planning to do this with bitbucket. ...
0
votes
1answer
61 views
Issues With Git Submodules
I'm trying to add files to a git repo that were somehow previously added as a submodule. I don't know how that happened.
I cannot find a .gitmodules file anywhere and my .git/config looks like this:
...


