git-submodules Questions

2

Im using another react repo (lets call it design), in my main react app, as a git submodule. I use webpack to build the main app. After integrating the submodule in the app, Im getting the followin...
Marthmartha asked 4/3, 2022 at 10:0

7

Solved

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 ...
Kilian asked 8/2, 2013 at 23:37

7

Solved

My project struture ProjectA -FrameworkA (submodule) --Twig (submodule of FrameworkA) How I can update submodules recursively? I already tried some git commands (on ProjectA root) git submodule...
Overarch asked 16/4, 2012 at 3:38

12

Solved

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 = .emacs...
Freezing asked 5/1, 2011 at 13:24

9

Solved

I have a project A which is a library and it is used in a project B. Both projects A and B have a separate repository on github BUT inside B we have a submodule of A. I edited some classes on the...
Ahouh asked 19/11, 2011 at 2:3

3

I am currently working on an azure pipeline. Within my main github repo (repo A), I have another github repo added as a sub module. (repo B) My goal is to checkout the sub-module at the start of th...
Tortuous asked 23/11, 2020 at 23:21

5

Solved

I'm trying to checkout a submodule from another project in azure devops. steps: - checkout: self submodules: true persistCredentials: true clean: true Checking out another repository in the ...
Furred asked 9/12, 2019 at 16:41

7

Solved

On a private repository from gitlab, when I run git clone [email protected]:group/project-submodule.git the clone completes successfully. As part of the cloning process, I'm asked for the pass...
Residue asked 9/3, 2018 at 10:23

12

Solved

I can't seem to get rid of untracked content in Git's submodules. Running git status yields: # On branch master # Changes not staged for commit: # (use "git add ..." to update what will be commit...
Triphylite asked 26/2, 2011 at 12:2

1

I'm trying to create a CocoaPod with nested git submodules. I can create the pod, however, I can't fully install it. When I run pod install --verbose I can see that git submodule update --init is b...
Erbil asked 14/5, 2015 at 0:51

3

Solved

Why are people having this problem? $ git clone --recursive [email protected]:acani/Chats.git Cloning into 'Chats'... Permission denied (publickey). fatal: Could not read from remote reposito...
Proctor asked 2/7, 2015 at 12:38

11

Solved

I have just run a git diff, and I am getting the following output for all of my approx 10 submodules diff --git a/.vim/bundle/bufexplorer b/.vim/bundle/bufexplorer --- a/.vim/bundle/bufexplorer +...
Confessional asked 2/2, 2011 at 11:36

3

Solved

If I modify a submodule, can I push the commit back to the submodule origin, or would that require a clone? If clone, can I store a clone inside another repository?
Teetotal asked 28/4, 2011 at 6:5

3

Solved

I am using a git submodule in a very usual way. The way how people typically update a submodule is by checking it out, pulling something in the submodule and then commiting outside. Now, I typical...
Utley asked 31/3, 2014 at 14:56

2

Solved

I just do not understand the help page of Git. So what does happen or what is the difference? Assume I have a Git project A with a submodule B. Submodule B does have a submodule C. After cloning t...
Goodtempered asked 24/11, 2017 at 9:36

2

Consider a git repository Foo/, which has submodules bar1/ and bar2/. Each of these has the same branches: 1 & 2. I enter the supermodule, and I want to update the supermodule to contain the ...
Hampstead asked 24/11, 2015 at 13:24

15

Solved

See below the solid line for my original question. I have a folder in my local directory that is untracked. When I run git status, I get: Changed but not updated: modified: vendor/plugins/open_fl...
Docker asked 12/11, 2010 at 2:4

9

Solved

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: ref...
Farrish asked 8/2, 2013 at 8:29

6

Solved

Tried looking for answers on this site and others: StackOverflow - Easy way pull latest of all submodules They all seem to want to talk about if you are controlling them, not if someone else added...
Patchouli asked 22/5, 2017 at 5:22

2

Solved

I noticed that in my directory there were two modules that had been Subprojects of my Git repository. That happened because I moved them all to one Git repo and those modules (directories) had thei...
Gwyngwyneth asked 10/12, 2014 at 14:17

5

Solved

The original .gitmodules file uses the hard coded https urls but for some automated tests I clone from ssh and make the submodule urls relative as in ../ModuleName. I don't want to push these chang...
Hauser asked 3/2, 2017 at 16:11

8

I would like to get a list of all files, which have changed betweet two commits including those in submodules. I know I can do this: git diff --name-only --diff-filter=ACMR ${revision} HEAD It ...
Vivianne asked 25/5, 2012 at 15:21

3

Solved

While deploying my tests on a Jenkins instance, I noticed that some submodules could not be initialized. In Jenkins, I checked the checkbox for Use credentials from default remote of parent reposi...
Patriapatriarch asked 27/1, 2019 at 11:43

2

Solved

I have a project on my git repositary which contains submodules and those submodules contains feather submodules. Since I am not responsible to all the submodules, I don't know what changed there ...
Tweed asked 15/10, 2018 at 11:20

0

I have an existing Android app where I like to integrate a KMM library project as a git submodule. We want to integrate a git submodule on local builds and using a maven repository dependency on CI...
Shroudlaid asked 8/3, 2022 at 15:15

© 2022 - 2024 — McMap. All rights reserved.