I'm developing an application that uses git, so I need to test its integration with git. Inside my git repository, I need to have another repository (my_git_repo/tests/another_repo). How can I commit it without git submodules? (I don't want to have another remote repository (in github/bitbucket, etc) for just one file)
Any ideas?
You could transform your nested repository into a bare repo. A bare repository can be committed inside another repository.
One way (more here) to transform a repository into a bare repository:
Now,
test-repo.git
can be committed inside your main repository. If, at some point, you'd like to make edits in your test repository (edit files, add commits) you can just clone it back into a non-bare repo (git clone test-repo.git
).I loved @hvd's reply and I think it should be an answer that deserves voting up:
There are situations sub-modules are just too complex for a simple issue. My code was already working with the setup similar to the original question. My problem was involving test repos where those repos (3 of them) were going to be used for testing purposes only using actual repos with known commits. So I wanted to add those repos into git just like any other subfolder without the complexity of submodules... this is for testing for crying out loud. I needed the histories to be within those test repos. I noticed that the complexity of submodules is actually greater than the said 'complexity of creating and maintaining the tests'... actually it's simple.
The above code simply decompresses the test repos before the tests suites are run and cleans them up afterwards. The idea here is to setup the repos as required by your scenario and then add them to an archive. If there are any changes to the repos then you just update the archive.
Submodules don't necessarily need to be cloned separately; you can publish a project and its submodules in a single repo. Just have a branch dedicated to the submodule contents in your main repo, then after cloning the main repo
git clone -sb
the submodule directly from there.Setup in new clone:
and
sub
will have the most recent content.git rev-parse :sub
will show you what's committed forsub
-- i.e. what should be checked out there -- when you don't just want the current branch tip.You could hook up the
git submodule
command here, with a.gitmodules
file and this and that, but it hardly seems worth it.