Questions related to the subrepository feature in the Mercurial distributed version control system.
1
vote
1answer
22 views
How to specify the default-push for mercurial subrepositories?
When you add mercurial subrepositiories using .hgsub you can specify them using HTTPS or SSH but here is the big problem:
if you specify HTTPS you will not be able to push because it will require ...
1
vote
1answer
32 views
How to use mercurial or git subrepositories that are connected to the latest release tag?
I am looking for a solution that would allow me to use subrepositories that are getting not the HEAD and instead a specific RELEASE tag, or if possible the latest tag.
Is this possible, how should I ...
0
votes
2answers
59 views
hg clone fails after adding subrepos
I have a problem with my mercurial main repo. My colleague created a bunch of subrepositories for dependancies, and since then, I can't update my local repo. I decided to try a checkout in an empty ...
1
vote
0answers
7 views
mercurial child projects not showing up as java projects after cloning the parent
I have a mercurial project as shown below:
Parent : Project 1 which is a folder with java files etc.
Project 2, Project 3 and Project 4 are child projects meaning they reside under the Project 1 ...
1
vote
0answers
81 views
How to merge a feature branch to default with subrepositories with Mercurial
I have numerous projects with subrepositories:
/project <- Main repository
/project/src <- Source code subrepository (subrepository to /project)
/project/src/module ...
0
votes
1answer
23 views
Deploy Subrepos to Appharbor
I am attempting to setup a deployment on appharbor for code hosted on bitbucket. I have a number of projects that make use of a library project that I have, so I use subrepos to keep my code ...
0
votes
1answer
72 views
Best practice for using one mercurial project in another
What are the best practices for using one mercurial project in another? I've got a django app that I'm working on, but I'm also using mercurial to version control a website that uses that app. I've ...
4
votes
1answer
70 views
git branch in hg subrepo
I have a mercurial project in which I would like to use jQuery-File-Upload.
I added the following to my .hgsub file in order to create a subrepo for this plugin:
public/assets/common/js/filedrop = ...
0
votes
0answers
92 views
Mercurial workflow for subrepos to avoid “Can't merge due to uncommitted changes”
When working with a Mercurial repository ("outer") that has a subrepository ("inner"), often you can end up with the problem whereby you're trying to do a merge on the outer but it fails due to ...
0
votes
1answer
98 views
Are nested mercurial subrepos that bad?
After researching mercurial and reading http://thread.gmane.org/gmane.comp.version-control.mercurial.devel/40107 I have been sufficiently warned about the dangers of nested subrepos. However, I have ...
1
vote
0answers
74 views
hg bundle with subrepositories
I've been looking for a code review workflow between teams geographically dispersed using mercurial. I found a nice answer that make use of the hg bundle command here --> Mercurial and code reviews; ...
1
vote
1answer
54 views
Mercurial - Pushing Sub-Repo Heads
How can I only push the needed HEADS of a subrepo from within the parent repo.
I've started using a bookmark style process for local feature branches in mercurial. It works great so far, just commit, ...
2
votes
1answer
110 views
Using subrepositories with bitbucket and ToritoiseHg
I have subrepository structure as following in TortoiseHg:
/MainFolder/
/MainFolder/SubFolder1
/MainFolder/SubFolder2
MainFolder is a private repository on bitbucket
SubFolder1 is a private ...
1
vote
2answers
41 views
Is it possible to update back through the point of adding subrepos?
I've had a folder in my repository. Then I have made this folder a subrepository (with the very same files), commited and pushed this change. Now I can't update back through that commit. Here's the ...
1
vote
1answer
79 views
Tracking in-house libraries in subrepositories
We are developing an in-house framework that several projects are going to use.
The idea is to have the entire framework tracked as a mercurial
subrepository of each project's repository. This ...
0
votes
1answer
41 views
Determining changes in subrepositories on remote server without commit in main repository
I want to use hierarchical structure with mercurial repositories.
Structure
_Main
Main/sub1
Main/sub2_
.hgsub
sub1=sub1
sub2=sub2
[subpaths]
somepath/Main/sub1=somepath/sub1
...
0
votes
2answers
62 views
disable/deprecate (but not delete) mercurial repository
My colleagues and I use several repositories that live on a centralized (ubuntu, if it matters) server. For several of our projects, we include the same 4 repositories as subrepositories in lots of ...
1
vote
1answer
76 views
NuGet in a sub-repo (externals) environment
I have a few repositories in Mercurial with the following structure:
Core
Integration
Admin
MyApp
From the MyApp repo, I want to include Core and Integration.
I add those as a sub-repo to MyApp, ...
0
votes
1answer
42 views
Mq on a subrepo without write access
I have a dependancy as a subrepository (without write access to) in my project.
I'd like to add a few personal customizations to that subrepository - possibly using mq.
I also would love to be able ...
0
votes
1answer
80 views
Mercurial: How do I revert a subrepo file?
I have a mercurial repo with a sub-repo (in this case, bootstrap).
I modified the file, then modified it back manually, but hg still thinks it's modified and won't let me commit my other changes (I ...
1
vote
1answer
44 views
Multi-user access for Mercurial sub-repositories
What is the right way to organize ssh access to sub-repositories in mercurial?
Consider the following situation:
master
|--.hgsub
|--slave1
|--slave2
And .hgsub:
slave1 = ...
0
votes
0answers
49 views
TortoiseHg, Auto excluded files make subrepo dirty
On a project Im working on we have a sub-repository with two tracked configuration files. These configuration files are often changed but the we do not want the changes commited and therefore the ...
0
votes
1answer
119 views
Make Jenkins detect changes to a Mercurial sub repo
Is there a way to make Jenkins polling feature detect that a change has occurred in a sub repo, even when that change has not yet been committed to the parent repo?
Realistically I expect that I'm ...
6
votes
2answers
563 views
How to use mercurial subrepos for shared components and dependencies?
We develop .NET Enterprise Software in C#. We are looking to improve our version control system. I have used mercurial before and have been experimenting using it at our company. However, since we ...
0
votes
1answer
129 views
AppHarbor, BitBucket and SubRepo Work Around
I would like to host a project on AppHarbor. The project's Hg repository is hosted on BitBucket. The issue is that my repository contains a subrepo (also Hg on BitBucket). It seems there is no way for ...
6
votes
1answer
244 views
How to fix Mercurial stuck on Git subrepo push?
I have root Mercurial repo (web site).
I clone WordPress from GitHub mirror into /wp subdirectory.
Since I want very specific (stable) version of WP, but no ongoing development I do git checkout ...
2
votes
1answer
146 views
Mercurial new suprepository in nested subrepository
I'm not sure if this is possible, and if it's not any alternative solutions would be welcomed!
I have a number of solutions using Orchard - which mandates that any modules be in a certain directory ...
0
votes
0answers
83 views
Mercurial share extension doesn't work with nested subrepos
I can't get mercurial share extension to work with nested repos.
Test repository structure:
SubrepoTest/
nested/
The SubrepoTest/.hgsub content:
nested = nested
Trying to share repo gives ...
0
votes
1answer
210 views
Mercurial subrepository from a relative local directory?
Is it possible to create a subrepository using a sibling path? Subversion is our "chosen" VCS here, but I've already had quite a few issues with out of date commits. It's much more convenient for me ...
2
votes
1answer
262 views
Any way to pull/update all subrepos?
I'm looking into the viability of switching from svn to mercurial for my organization, but there's one hangup I can't seem to find a solution for.
Is there any way to pull and update a repo and all ...
1
vote
0answers
93 views
Mercurial repository log including subrepositories
In our build scripts I use the templated hg log command to get a changelist for a particular build. This works great, but unfortunately it does not include changes in the subrepos (we have more than ...
0
votes
1answer
126 views
How to add specific subfolder of subrepo
I'm comming from SVN background and I'm having a problem of adding to my main repo a subfolder of subrepo. That means that I don't want to add the whole subrepo to my main project - only a part of it. ...
2
votes
1answer
63 views
Internal Vrs External Path to Sub-repository
I have a repository for an application A which is controlled by mercurial and a library B which is also controlled by mercurial. In the application A's repository it has the sub-repository mapped to ...
3
votes
1answer
101 views
How can I make “commit” abort if there are uncommitted subrepo changes in Mercurial?
This seems to happen all the time to me: I work on the parent repo. I find and fix a bug in a subrepo. I carry on with parent repo work. I commit the parent repo with a message like "Added feature X". ...
1
vote
1answer
121 views
How do you replace a Mercurial subrepo with a folder?
I am working with a Mercurial repository that has the following structure:
-- Root
-- .hgsub
-- SubDir
-- SubSubDir
-- SubRepo
The .hgsub file declares SubRepo as ...
1
vote
1answer
154 views
Sharing a core codebase between multiple projects
We have several product lines built around a common core and currently maintain them in SVN using externals. Moving to mercurial, it is natural to move to use hg sub-repositories.
The thing is the ...
2
votes
1answer
146 views
How to preserve Mercurial subrepo remappings across clone/pull?
I'm trying to set up subrepo remapping in Mercurial (2.1.1) to account for subrepo paths that may change in the future. I've been able to get the [subpaths] key to be read and processed properly when ...
2
votes
1answer
487 views
How can I configure TortoiseHg Workbench to use the --subrepos switch
I'd like to know how I can configure TortoiseHg Workbench so it alawys supplies the --subrepos switch when checking status. I can do this with the commandline no problem. I only need to do this for ...
3
votes
4answers
570 views
How to configure mercurial to deploy website folder only
I have a website that I want to deploy to a clients DEV and UAT environments, the site is part of a mercurial repo - it is in the Website folder at the same level as the .hg folder. I know I can push ...
3
votes
1answer
236 views
Mercurial update doesn't work for subrepo if subrepo belongs to two main repos?
Take this repo structure:
Server (main repo)
ProjectA (subrepo)
SharedLibrary (subrepo)
Client (main repo)
ProjectB (subrepo)
SharedLibrary (subrepo)
SharedLibrary points to the ...
0
votes
0answers
324 views
Can't clone Mercurial subrepo from main repo, fails with 'unknown revision'?
I have a Windows file structure like so:
Stable
ProjectA
SharedLibrary
Stable contains the main repo. ProjectA and SharedLibrary are subrepos of Stable. The .hgsub file contains:
...
5
votes
2answers
230 views
Updating to old Mercurial revisions with subrepos that have moved
Our project has a couple of remote subrepos in it, and their addresses have recently moved from http://host/path to http://other_host/path. How can one go back to a revision from, say, last month, ...
3
votes
1answer
166 views
Mercurial [subpaths] containing absolute path is appended to main repo's default path when pushing
Running Mercurial 2.0.2 on Windows:
In my .hgrc:
[subpaths]
MYREPOS/(.*) = https://server/repos/\1
And in my .hgsub:
subrepo/lib = MYREPOS/lib
When I do a push, the push path of the sub repo is ...
0
votes
1answer
114 views
setting up mercurial/kiln subrepos on osx
I have been trying to follow the instructions in the answer to this question, using kiln.
i'd like to be able to arrange things as follows:
/somepath/thirdparty maps to a kiln repository ...
5
votes
1answer
546 views
How to make Mercurial subrepository to always point to a certain changeset or tag?
I am curious if this is possible with Mercurial. I'd like to have a subrepos in a project that are always fixed to the manually specified changeset, or better yet - tag.
Basically what I am trying to ...
1
vote
2answers
155 views
Keep histories in sync between local and remote mercurial repositories
I am working on a project that is set up with each group having a server-side clone of our main mercurial repository. The workflow we have been using involves developing on laptops, committing and ...
2
votes
2answers
359 views
Mercurial error with subrepos on windows
I have critial problem with Mercurial configured with subrepos. When I try to commit or make update I get following error:
hg commit -m "commit" --traceback
Traceback (most recent call last):
File ...
1
vote
1answer
223 views
Mercurial internals : Git subrepository status after aggressive permission change
Disclaimer : I'm not asking for a solution, a workaround or any kind of advice on how to do things, I'm just curious about the internals of Mercurial.
I have a mercurial repository with some ...
0
votes
2answers
215 views
How to share a .git folder among several projects?
I want to work with Git repositories or sub-repositories like in Mercurial Share extension.
So, here's what I have:
mkdir orig
cd orig
echo "osthuaosteh" > abc
git init --shared
git add abc
git ...
1
vote
2answers
718 views
Mercurial suprepositories
I have got a question regarding suprepositories. Our project is set up like this:
+ projectA
+ some files
+ dependencyA
+ some files
dependencyA is a subrepository. It was created ...
