git-submodules Questions

5

I have a fairly large private python package I just finished creating. I'd like to install it as part of my build process for an app in a Docker container (though this isn't so important). The pack...
Disbursement asked 29/4, 2015 at 4:35

1

Solved

I have a git repo located on my machine at /path/to/repo, which contains several submodules, /path/to/repo/submoduleA and /path/to/repo/foo/bar/submoduleB. Due to a workflow that I cannot change, ...
Arvonio asked 1/11, 2019 at 22:34

1

Solved

I have a GitHub repository which I cloned onto my computer as a submodule of another repository. I have all the files and commits locally, but on the remote, my git client thinks there isn't any b...
Tab asked 1/11, 2019 at 22:47

1

Solved

So I've been given the task of updating a certain directory over Ansible and I can't seem to find a way to execute git submodule update with git:. Is there really no other way to do git submodule ...
Diastase asked 28/10, 2019 at 10:2

3

Solved

My repo uses a customized version of Recurly-js, and I have packaged it as a submodule using these instructions https://devcenter.heroku.com/articles/git-submodules . However, I get the following e...
Bebe asked 13/11, 2012 at 14:15

4

Solved

Say I recursively clone a repo. $ git clone --recursive ssh://server/project/client Cloning into 'client'... remote: Counting objects: 191, done remote: Finding sources: 100% (191/191) remote: Tot...
Galloping asked 5/7, 2016 at 16:52

3

Solved

How can I exclude Subproject commit .... I changed nothing in the submodule, only pull changes from remote repository! I think I commited something unneeded in the main repository, when created sub...
Poynter asked 30/9, 2019 at 15:3

3

Solved

I have a git repo and I want to add a submodule to it. Problem is, the submodule exists as a folder inside another repo. Can I add only that folder as a submodule?
Spelldown asked 1/7, 2010 at 14:13

4

Solved

I feel that using Git submodules is somehow troublesome for my development workflow. I've heard about Git subtree and Gitslave. Are there more tools out there for multiple repository projects an...
Scholasticate asked 28/6, 2011 at 0:54

4

Solved

I have a project main that contains a submodule foo. For this particular project, I would like to make a small change to foo that only applies to this particular project main. main/ + .git + ma...
Plauen asked 29/11, 2017 at 21:46

3

I have git repo which has nested submodules. What is the difference between below 2 commands? git submodule update --init --recursive git submodule foreach --recursive git submodule update --ini...
Aluminium asked 5/6, 2014 at 10:33

2

I've already extensively searched for a solution, tried different approaches but none worked, thus I'm asking here. My current need is to have separate Git repositories each containing a .Net solu...
Isocrates asked 2/4, 2015 at 11:14

2

Solved

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 curren...
Julietjulieta asked 6/2, 2013 at 1:22

4

I cant push the changes I made to a git submodule. I have pushed the main project, and get this mainProject$ git status On branch myBranch Changes not staged for commit: (use "git add <file&gt...
Furnish asked 14/1, 2015 at 12:30

6

Solved

When I want to run "ant run" in contiki-3.9/tools/cooja, I am facing following error: BUILD FAILED /home/user/contiki-3.0/tools/cooja/build.xml:199: The following error occurred while executing...
Liam asked 28/9, 2015 at 0:50

2

Solved

I have multiple separate git repos which have no submodules in them. The task is to assemble a hierarchical tree of those repos and use it to share between users. This is trivial with 'subtree' or ...
Casar asked 28/6, 2019 at 21:49

0

I'm sharing .proto files across multiple projects using git-submodules. Now my question is how to setup the imports properly? In a microservice environment all service-repositories have a git-su...
Vaughnvaught asked 24/6, 2019 at 6:34

9

Solved

I have a git repository set up with several submodules, which creates a .gitmodules file that is a tracked file in the parent repository. However, there are other developers wanting to work on this...
Digamy asked 10/10, 2011 at 14:33

1

Solved

I have this situation with git version 2.8.0.windows.1. I have one "release" branch of the main project and I push there everytime I've a new release. This project has a submodule that is develop...
Jackknife asked 28/5, 2019 at 8:46

1

We have a git repo that is serving multiple projects/targets. In addition there are 3 submodules for separately developed modules that are referenced and pulled into the workspace. Are are going t...
Aye asked 17/5, 2018 at 14:54

1

I have a git repository with three submodules. The containing repository has two branches master and develop. All submodules only have one branch – the master branch. When the containing repositor...
Pleadings asked 23/4, 2019 at 15:49

5

Solved

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...
Thanks asked 21/10, 2010 at 2:18

1

I have a repository repoB on a private server serverB, and get a deploy token (user + password) from it. This repository is used as a submodule in the project I'm trying to configure. In this proje...
Cogent asked 22/11, 2018 at 13:51

1

Solved

I'm developing for an embedded project that has the Linux source tree as a submodule. I'm currently working on a non-development machine, so I'll never build with this repository; it's just for ref...
Illusive asked 1/5, 2019 at 14:39

1

Solved

I'm currently writing a c++ library, that has several "sub libraries", like for example the boost library. Let's name the library "TestLib" and the sub libraries "Base" and "Ext", where Base conta...
Cannae asked 29/4, 2019 at 14:18

© 2022 - 2024 — McMap. All rights reserved.