The tag has no wiki summary.

learn more… | top users | synonyms (1)

0
votes
0answers
19 views

Git Submodule Merge

I have a git repository, and in a branch I've created a submodule. The submodule, called foo, replaces a file called foo. The foo repository contains one file called bar. I committed my changes on ...
0
votes
0answers
12 views

Maven: How to setup a bean once and reuse it among submodules

I am doing something that doesn't seem strange, but I couldn't find any information about it anywhere. I have a Maven project with submodules A and B. In order to run the tests (TestNG) I need to ...
0
votes
1answer
22 views

Auto populate submodule version to parent module

I am running windows with git version 1.8.1.msysgit.1 I have two seperate repos (1 and 2 for example, both maintained by me) and repo 2 is added to repo 1 as a submodule (as a copy). Then I change ...
0
votes
1answer
22 views

Git pull while in submodule will create another submodule

I have a major problem with git pull when dealing with submodules. I thought I started understanding their principle but apparently not... I created a simple git repo Super and created a submodule ...
0
votes
1answer
27 views

Maven to integrate multiple Git Projects

Hi: I have several git projects which i want to integrate under a single maven build. What are the available templates for doing this, and is there an existing archetype that describes this sort of ...
2
votes
1answer
53 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 ...
0
votes
1answer
36 views

Git submodule in remote repository

I have trouble understanding how submodules work. I have a remote repository PARENT and a remote repository CHILD. I would like to make repository CHILD a submodule of repository PARENT, so when I ...
0
votes
1answer
39 views

Why is git submodule path wrong?

I have a git repository (which I'll refer to as ml) located at ssh://ml-fey/usr/projects/data/nuclear/mc/type1 This repository has a submodule. The .gitmodules file looks like this [submodule ...
0
votes
0answers
23 views

git submodule hook solution [duplicate]

I have a situation where our organization is utilizing a git submodule, but our development team unknowingly updates the submodule reference to something out-of-date. I think this is because a ...
1
vote
1answer
28 views

Can a git submodules workflow coexist with versioned packages?

Can anyone explain how something like the following system could be brought outside of git, i.e. using version numbers instead of git's context via branches and submodules: Let's say we have some ...
1
vote
2answers
36 views

unwanted subfolder when adding a git submodule

I am trying to add a git submodule. The submodule itself works without any problem but my question is about the created layout when adding the submodule. I am adding a simple submodule called utils ...
1
vote
0answers
13 views

How can I manage repositories for plugins development?

Say you have an application X and you want to develop plugins A, B and C. The application can live without the plugins but plugins doesn't work without the application. Also you want to improve ...
0
votes
1answer
79 views

PlayFramework 2.1, submodules and Eclipse having errors about invalid package name

Using PlayFramework 2.1 and submodules, I have an error with all my controllers in Eclipse : "The declared package "controllers.website" does not match the expected package "controllers" Of ...
2
votes
1answer
97 views

Symfony2, AWS Beanstalk: how to push vendor as files not git-submodules to repo

We are using Symfony2 on a AWS Beanstalk Application. For the Deployment we adjusted the Deployment-Script to do a composer install after the application has been uploaded. Eventhough this works ...
0
votes
1answer
87 views

Trouble with deploying Django app w/ git submodule

I'll try to skinny this question as best as I can so that it's not too vague. So I'm using this plugin—https://github.com/alex/django-ajax-validation—in a Django app. I'm fairly certain that the ...
3
votes
1answer
42 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
33 views

Git submodule troubles - changing underlying repo address

I have a project where I added a git submodule to a fork of a repo that is out of date. Rather than pointing to that fork, I decided to change the submodule reference to point to the original repo ...
1
vote
0answers
122 views

GIT - commits don't follow merge-base error

Our process for GIT is a periodic merge down to our master branch so that the changes can be merged back out to our latest features branches. Since out latest rounds of merging from one branch to ...
0
votes
1answer
39 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 ...
0
votes
1answer
87 views

recursively git pull for all of the git submodules simply

My personal repository has some repositories as submodules. And the following command $ git submodule foreach git pull origin master was faced with the following result right after entering ruby ...
0
votes
2answers
64 views

How to register events from within a module in Yii

i'm trying to register events from within a submodule in Yii. It just doesn't seem to work. The init method is definitely called. class TestModule extends CWebModule { public function init() { ...
0
votes
0answers
156 views

Include RestKit in Xcode project, push all changes to Git remote repository, clone to another computer

Using RestKit in my Xcode project, trying to learn how to use my remote git repository to share it all with a friend. Also want to be able to pull latest changes to RestKit from time to time. Here's ...
3
votes
2answers
112 views

git submodule foreach - Robust way to recursively commit a child module first?

Is there a robust way to do a recursive depth-first git submodule foreach command? I am using the foreach --recursive command which does the job, except it is breadth-first. This is a problem because ...
1
vote
3answers
41 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 ...
0
votes
0answers
109 views

Jenkins build 'cannot find current revision' at github

I have a (private) project at github which has a submodule. When I invoke the ant build at the command line in Terminal (OSX), the build is fine. But when the same build.xml is invoked via Jenkins ...
2
votes
2answers
105 views

how can i split up a large django-celery tasks.py module into smaller chunks?

I have some very lengthy task functions that I would like to break out from my tasks.py module, but still be able to call like from myapp.tasks import my_task. I tried creating submodules for each ...
1
vote
0answers
80 views

Git clone --recursive is not listing the second level sub modules

Cloning is not working properly for sub modules. I have a Main git repo and added two repos as sub modules.Inside that submodule repo also i have some repos. for Eg: Repo main ->submodule repo A(A ...
1
vote
3answers
101 views

git submodule push?

I changed code in submodule and want to share with other team members. (Wow git submodule is hard) > cd to submodule > git add/commit > git push prompts me Username: and Password: > ...
2
votes
1answer
337 views

git submodule commit/push/pull

I'd like to use git submodule. The steps I need to take to push my changes to my project are add/commit/push from submodule directory add/commit/push from parent directory Steps I ...
1
vote
1answer
98 views

Git Error: “is in submodule”

I'm using gitflow on my website, however I downloaded a 3rd party library using Git and I can't add this to my main repo. If I try to I get the following message: fatal: Path 'FILENAME' is in ...
0
votes
0answers
61 views

jenkins: complete git changelog for main repository and all submodules

we have main git repository with several submodules. when jenkins builds app from repository it creates changelog only for main repository. all git changelogs for submodules are not included into ...
4
votes
1answer
104 views

In GIT, what is the best way for a project to mix old and new versions of sub-components?

Suppose a project is to use an old frozen version of Component1 (say revision Rev1) but the current (master) version of all other files. Component1 is a directory in the same repository. GIT's ...
1
vote
2answers
106 views

Python import: Module's path is different, depending on where it's imported from?

The header might be quite hard to understand, but I'll try to explain as well as I can. I have a folder called SubModule which includes total of 3 files: __init__.py Class1.py Class2.py Inside ...
1
vote
0answers
43 views

Using git submodules through ssh with buildbot

I have a git repository with submodules that are linked with different external git-servers. How can I pass ssh authentification for each submodule and user? Can I put separate options for each ...
0
votes
0answers
25 views

Issue with git submodules using a GitHub project as SVN external

I am working on a project that uses SVN as the version control system, and I need to refer to a git repository as a submodule of my project. The problem is that this git repository refers itself to ...
2
votes
1answer
72 views

Combine a base project that is growing in child projects in git repository except git submodule or subtree merge methods

There are some child projects: "Project 1", "project 2" and so on in the future. Also, There is a project that named: "Base Project" and it's foundation of other projects. "Base Project" is a content ...
0
votes
2answers
138 views

github.com/jquery/jquery as git submodule

I'd like to use a local copy of jQuery 1.8.3 for my github project. I'd like to do it the right way, which would be to add it as a submodule: git submodule add git://github.com/jquery/jquery.git ...
1
vote
0answers
89 views

Git - Problems with Detached Head, Amending Commits, and Being Behind when Pushing?

Our team is using git submodules, but we run into some errors with pulling, which tells us that we are behind even though we recently updated (and there have been no remote commits / pushes since). ...
1
vote
0answers
69 views

django south cannot see any field in submodule

I have such folder system: project_name: plugins link templates cms_plugin.py models.py view.py .... gallery ... And i want to use migration for link ...
2
votes
2answers
154 views

Rewrite history git filter-branch create / split into submodules / subprojects

I am currently importing a cvs project into git. After importing, i want to rewrite the history to move an existing directory into a seperate submodule. Suppose i have a structure like this: file1 ...
0
votes
1answer
67 views

Can I add a GIT submodule to the existing project`s root, where files are not joint?

For example, I have Magento project: app/design/frontend/base/ app/design/frontend/default/ errors/default/ errors/local.xml.sample ... skin/frontend/base/ skin/frontend/default/ ... ... and ...
2
votes
1answer
34 views

updating a submodule to most recent commit

I have added a couple of sub-module to my xcode project. How do I upgrade those libraries? For now the way I do it is by going to my Third Party folder, and inside say I have AFNetworking and I just ...
1
vote
1answer
101 views

Working with submodules within submodules

I am experiencing some troubles managing some repositories on Github. I am actiually mainting a pathfinding library. The master repo is here: Jumper.This repo connected to 2 others, included as ...
2
votes
1answer
47 views

Conflict for FMDB acting as submodule in two projects cascaded together

Description: Integrating FMDB in XCode 4.5 for iOS project. a> Proj A and proj B, B is a submodule in A. b> FMDB is the submodule for both A and B. Problem: Conflict! a> If the FMDB in B is removed, ...
0
votes
0answers
79 views

commit reactor submodules with scm:checkin goal from maven scm plugin

I have defined a reactor project with 2 sub-modules. now I want to execute a few maven goals on this modules in one step, but the problem is the goal scm:checkin won't be executed on the 2 subModules, ...
4
votes
1answer
714 views

Github submodule automatically in download

I have a github project (Link) and use a other project ans submodule. This submodule was also in the .gitmodules, the code below: [submodule "inc/tha"] path = inc/tha url = ...
1
vote
1answer
105 views

How to commit hg repo with GIT submodule which should be read only?

my Hg repo now needs to include a Git submodule (Restkit) as per the advised method in the site wiki. However, I am not updating the git contents and should only be potentially reading/pulling in ...
0
votes
1answer
87 views

pushed code from a git submodule, but can't pull it again from the main working directory

I have a project that pulls in a library as a submodule from a different repo. I made a branch with some changes in the library from within the submodule directory and sucessfully pushed it to ...
3
votes
1answer
221 views

Trying to print every submodule inside a module in python

sorry if I got some facts wrong during this but I have only been programming for about a year, since I started a computing course at my school, and sorry if this question has been answered before I ...
3
votes
1answer
63 views

Keep files on working tree but make them available to any branch?

I'd like to have a few files of code available to any branch, but keep those files on their own branch (rather, "branch", since this might not be possible with branches). Is there a better way to do ...

1 2 3 4 5