Submodules allow you to keep a Git repository as a subdirectory of another Git repository.
0
votes
0answers
83 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 ...
3
votes
1answer
44 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 ...
1
vote
1answer
134 views
Using non-npm-package git submodules in npm packages
How can I update non-npm-package git submodules in my npm package before install?
I'm using git and have a node.js module that depends on an external project also hosted in a git repository. I added ...
1
vote
0answers
15 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.
$
...
0
votes
1answer
25 views
Modifying SubModules
I have a project I am working on. I use a library that is on GitHub. Normally I have been using this library via Maven. However there are some bugs in the library so I would like to include this ...
1
vote
1answer
147 views
ShareKit assert: “ShareKit has been refactored to be used as Xcode subproject.”
I'm having trouble getting ShareKit 2.0 to work in my app. I've followed the latest installation instructions, creating a submodule for ShareKit, and tried cleaning and rebuilding, deleting and ...
1
vote
2answers
62 views
Push git sumbodule to own remote repo
I'm new to git, so I need your help.
I have project, and I'm added some third-party libraries to it from GitHub using git submodule add. I have modified some libraries depending on my needs. So how ...
0
votes
0answers
68 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 ...
1
vote
1answer
71 views
Programmatically get path to git directory in bash (including submodules)
Is it possible to programmatically find the path to the .git directory including for submodules?
I'm trying to write a script that installs a git hook but I can't find a straightforward way to find ...
1
vote
1answer
62 views
Getting a buildable git-tfs
I am trying to modify git-tfs. However, I cannot seem to get it built.
What I did:
1. Read the readme which states for building:
1a. Update submodules. git submodule update to get the ...
1
vote
0answers
90 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
...
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
1answer
41 views
Get commit date of a given SHA1 (submodules) commit
very special problem: I have integrated submodules and I get my submodules 8-char long referenced commit state by
$ git ls-tree HEAD MY_SUBMODULE | awk '{print $3}' | cut -c -8
03B446AB
Now I want ...
1
vote
1answer
44 views
Why does switch of branch update submodule (without explicit pull)?
I just cloned a repository, I never worked on before. It contains submodules, so I did
~/projects/myProject (master) $ git submodule init
~/projects/myProject (master) $ git submodule update
Since ...
0
votes
1answer
60 views
Git submodule: Move submodule outside repository
after creating a git submodule by typing
git submodule add <repo> && git submodule init
my .git/config is changed, as well as a new file .gitmodules is created. It seems that I would ...
1
vote
1answer
49 views
Git: checkout submodule files into a single directory
It's possible with git submodules to checkout multiple repositories as submodules into respective paths, e.g.:
% git submodule add git@.../repo1.git ./here/is/1
% git submodule add git@.../repo2.git ...
0
votes
1answer
43 views
Add a directory to a Github repository without submoduling
I pulled someone's Github repository. I added a directory within a directory and push it back up to Github.
When I push to Github, the directory appears as a green folder, a submodule. I want this ...
1
vote
0answers
46 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
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 ...
0
votes
1answer
18 views
I want to setup lower repository projects from a higher git repository
When I started with GIT, I was unfamiliar with the Project Code and just wanted to get all the code under source code control. The project hierarchy was like this:
/Projects/.git # I put the git ...
0
votes
0answers
33 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?
1
vote
1answer
134 views
What is the standard Git submodule folder structure for Android app?
I'm developing an Android app that would use a dozens of open source libraries which I plan on importing as submodules. Where should I put these submodules?
Right now I have:
/myapp
/res
/src
...
2
votes
1answer
76 views
Removing git submodules - how to automate removal on pull?
I've read how to remove a git submodule myself:
# Delete the relevant section from the .gitmodules file.
git config -f .gitmodules --remove-section submodule.$submodulepath
# Delete the relevant ...
0
votes
0answers
63 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 ...
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 ...
1
vote
1answer
214 views
Git: Create repo as submodule
I'd like to create a new repository as a submodule of my project.
Usually, I create a Github repo and then add it as a submodule using the command
git submodule add url_to_repo.git
Is there a way to ...
1
vote
2answers
144 views
Git recovery: “object file is empty”. How to recreate trees?
Note: I don't have any before-corruption clone of this repository. I believe my situation is different from others described here, because I'm missing a tree, not a blob.
What happened:
When I tried ...
2
votes
1answer
49 views
How do I use 'git filter-branch' to update the SHA of a submodule?
Let's assume that I have two Git repositories, A and B. B is a submodule of A.
For the sake of simplicity, let's also assume that I have a magic function, get_sha_B that, given an SHA commit from A, ...
3
votes
0answers
154 views
git archive export with submodules (git archive all / recursive)
I have a website directory versioned with git. I use submodules for required libraries like Twitter Bootstrap, colorbox and lessjs because I should not track the sourcecode but only the version of ...
0
votes
1answer
646 views
Unable to checkout git submodule path
I have a problem when working with git submodules.
Whenever i receive a new submodule reference from the upstream repository, executing git submodule update gives the following result:
fatal: ...
0
votes
2answers
31 views
forking git project for different OS
I have an OSX app which I have build myself in python. Like many OSX apps it has many (all?) of its dependencies within it. eg...
./git_repo
└── mac (dir)
├── myapp.app (dir)
│  ├── ...
2
votes
2answers
207 views
How to get Vim Ctrl-P plugin to index files inside a git submodule
If I run Ctrl-P natively out of the box, it works 100% as I desire, except that with the size of the codebase I work with, it takes a very long time to index directories.
To make Ctrl-P cope with the ...
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 ...
2
votes
2answers
145 views
git + go - how to handle subprojects with go get
I use the version control system git for my software. And "within" the source code, I use go get to automatically fetch software from github. How can I handle the "double git" situation?
When I run ...
1
vote
1answer
89 views
git -submodules / repo - How to use commit and branch for a bunch of branches in separate modules?
I have repo wrapper and about dozen different git repositories in it.
I would like to have one patch which I can apply/use later
in the following manner:
I would like to perform this commands on ...
1
vote
1answer
41 views
Enforce --recurse-submodules=on-demand for all clones of a repo
Given a Git repository with several submodules.
Is there a way to enforce all clients (read clones) of that repository to use the --recurse-submodules=on-demand option on pushing commits? I don't want ...
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)
...
1
vote
1answer
122 views
Is it possible to add a git submodule with recursive flag?
I am adding a submodule to my project which contains another git repo.
To get the module I ran:
git submodule add git://github.com/biakaveron/debug-toolbar.git modules/debug-toolbar
Then ran:
git ...
1
vote
1answer
47 views
use git submodule with read-only access
How to push changes in a git submodule where i have only read-only access.
My problem is when I try to do git submodule update. I get a fatal: reference is not a tree error
0
votes
0answers
19 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 ...
1
vote
1answer
478 views
Ignore new commits for git submodule
Background
Using Git 1.8.1.1 on Linux. The repository looks as follows:
master
book
The submodule was created as follows:
$ cd /path/to/master
$ git submodule add ...
7
votes
2answers
1k views
How do I replace a git submodule with another repo?
How do I replace a git submodule with a different git repo?
Specifically, I have a submodule:
located at ./ExternalFrameworks/TestFramework that points to a git repo ...
2
votes
1answer
49 views
How can I commit with cloned submodule in my repo?
I have created a repo for my .vim directory so that I won't need to donfigure that every time I change a machine I am working on.
So I have something like that now:
user@.vim$ tree -L 3 -a
.
|-- ...
0
votes
1answer
37 views
Github: is this workflow with sub-modules right? can be better?
I have a project A that uses lib B
project A <-- main repository
some sub folder
lib B <-- sub module
lib B <-- main repository
Now both are in source control, they are github ...
1
vote
1answer
154 views
What is the best practice using git and hudson with one repository including multiple projects
I have raised a similar question before yet after doing some research and bashing my head for a long time , I have concluded that I need some more guidance.
We have currently migrated to GIT from SVN ...
0
votes
0answers
46 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 ...
12
votes
4answers
471 views
Merge error after converting Git submodule to subtree
I have a project where I was originally using submodules for some dependent code. It turns out that submodules are not really appropriate for this project (and they are hard to use in practice), so I ...
1
vote
0answers
65 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 ...
0
votes
2answers
245 views
Git submodule pull overwrite/discard any local changes
I have a submodule which I changed some local files. The original repository has been modified and I now wish to do a pull on the submodule, but I get an error saying that I will lose my changes.
...
1
vote
2answers
123 views
Incorporate HTML5-boilerplate as a Git submodule or is there a better option?
I'm building a Pythonic web application skeleton and I'd ideally like the static files (a small part of the application skeleton) to be based on HTML5-boilerplate since h5bp puts a great deal of ...
