Tagged Questions

0
votes
2answers
58 views

How do you work with a git repository within another repository?

I have a git media repository that I'm keeping all of my javascript and css master files and scripts that I'll use on various projects. My question is if I create a new project that's in it's own git …
3
votes
3answers
83 views

Git submodules: Specify a branch/tag

How does git submodule add -b work? After adding a submodule with a specific branch, a new cloned repo (after git submodule update --init) will be at a specific commit, not the branch itself (git …
0
votes
0answers
9 views

how to ignore/deal with submodule with git cvsexportcommit

I used this other stackoverflow answer to help me set up a cvsimport in a central location (we have a few developers all starting to use Git). We've got that working OK, we pushed it to a github …
7
votes
2answers
158 views

Git submodules workflow

In my project I need to use third party code, stored in several Git repositories. My project is also stored in (separate) Git repository. There are several people working with me on the main project, …
1
vote
2answers
34 views

Need to handle git-submodules in git-archive

I need to pack git submodules inside of tarball which I create with git-archive. I see that in 1.6.5 git-archive does not support git submodules. I see several scripts to handle this case in the …
3
votes
3answers
232 views

Git nested submodules and dependencies

Let's say I have four projects named Core, A, B, Super. The dependency tree is like this: Super ---> Core |-> A -> Core |-> B -> Core I want each project to be …