Reputation: 2827
I have a mercurial repo in code.google that includes folders like
H
|_ A
|_ B
|_ C
The top-level folder H contains sub-folders A, B and C.
Now, I wanted to use Heroku to test the webserver in B, and Heroku only supports git. Since the testing is temporal, so I do not want to completely remove B from the mercurial repo. In the meanwhile, manually duplicating B for both hg and git does not seem stable.
Is there any better solution? Thanks,
Upvotes: 1
Views: 85
Reputation: 97270
Common plan can be (dirty draft)
Using Folder B as git-subrepository in Mercurial repo at permanent basis
In order to do it (TBT! I can miss some actions)
As expected result you'll be able (I hope) to work with old tree from Mercurial and test independent Git repository in Heroku
Upvotes: 1