Tagged Questions
2
votes
1answer
346 views
The story of Git, Git-Submodule and a SVN server
First of all i want to show you my project setup, I've two projects
Project X: Cloned from a remote svn server with git svn clone
Project y: Located on GitHub
Project X references Project y as git ...
2
votes
1answer
1k views
Git submodule not updating from a git-svn repository
I have a projectx which includes a git submodule
/projectx/foo/bar/submodule
The submodule repository is itself a git-svn repo which tracks an svn repository.
In the standalone submodule repo, ...
12
votes
2answers
2k views
Using git submodules in a git-svn project
In our git-svn managed project, we have 3 upstream projects that are all kept in native git repositories on GitHub. Since the source code of those upstream projects is under our control and changes ...
2
votes
1answer
653 views
How to modify git repository to add submodules in ALL the past revisions?
I migrated my SVN repository successfully with Tags into Git using git svn-clone. However, git svn-clone does not migrate svn:externals. Hence, I decided to modify branch tree using git filter-branch.
...
7
votes
2answers
2k views
Why are git submodules incompatible with svn externals?
There are lots of webpages out there suggesting hackish ways to make svn externals look like git submodules. I have read some accounts of what the difference is, but this doesn't seem very ...