* [PATCH] remote-hg: fix hg sharedpath when git clone is moved
@ 2013-11-23 12:38 Antoine Pelisse
2013-11-23 12:46 ` Antoine Pelisse
2013-11-23 16:32 ` Felipe Contreras
0 siblings, 2 replies; 4+ messages in thread
From: Antoine Pelisse @ 2013-11-23 12:38 UTC (permalink / raw)
To: git; +Cc: Felipe Contreras, Antoine Pelisse
remote-hg is using a mercurial shared clone to store all remotes objects
in one place. Unfortunately, the sharedpath is stored as an absolute
path by mercurial, creating a dependency on the location of the git
repository. Whenever the git repository is moved, the sharedpath must
be updated to reflect the new absolute path.
Check mercurial sharedpath file when getting the local hg repository,
and update it manually with the new path if necessary.
Signed-off-by: Antoine Pelisse <apelisse@gmail.com>
---
contrib/remote-helpers/git-remote-hg | 4 ++++
contrib/remote-helpers/test-hg.sh | 11 +++++++++++
2 files changed, 15 insertions(+)
diff --git a/contrib/remote-helpers/git-remote-hg b/contrib/remote-helpers/git-remote-hg
index c6026b9..576f094 100755
--- a/contrib/remote-helpers/git-remote-hg
+++ b/contrib/remote-helpers/git-remote-hg
@@ -416,6 +416,10 @@ def get_repo(url, alias):
local_path = os.path.join(dirname, 'clone')
if not os.path.exists(local_path):
hg.share(myui, shared_path, local_path, update=False)
+ else:
+ sharedpath_file = os.path.join(local_path, '.hg', 'sharedpath')
+ if hg_path != open(sharedpath_file, 'r').read():
+ open(sharedpath_file, 'w').write(hg_path)
repo = hg.repository(myui, local_path)
try:
diff --git a/contrib/remote-helpers/test-hg.sh b/contrib/remote-helpers/test-hg.sh
index 72f745d..2477540 100755
--- a/contrib/remote-helpers/test-hg.sh
+++ b/contrib/remote-helpers/test-hg.sh
@@ -335,6 +335,17 @@ test_expect_success 'remote cloning' '
check gitrepo HEAD zero
'
+test_expect_success 'moving remote clone' '
+ test_when_finished "rm -rf gitrepo*" &&
+
+ (
+ git clone "hg::hgrepo" gitrepo &&
+ mv gitrepo gitrepo2 &&
+ cd gitrepo2 &&
+ git fetch
+ )
+'
+
test_expect_success 'remote update bookmark' '
test_when_finished "rm -rf gitrepo*" &&
--
1.8.5.rc1.30.g02973b8.dirty
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] remote-hg: fix hg sharedpath when git clone is moved
2013-11-23 12:38 [PATCH] remote-hg: fix hg sharedpath when git clone is moved Antoine Pelisse
@ 2013-11-23 12:46 ` Antoine Pelisse
2013-11-23 16:32 ` Felipe Contreras
1 sibling, 0 replies; 4+ messages in thread
From: Antoine Pelisse @ 2013-11-23 12:46 UTC (permalink / raw)
To: git; +Cc: Felipe Contreras, Antoine Pelisse
On Sat, Nov 23, 2013 at 1:38 PM, Antoine Pelisse <apelisse@gmail.com> wrote:
> remote-hg is using a mercurial shared clone to store all remotes objects
> in one place. Unfortunately, the sharedpath is stored as an absolute
> path by mercurial, creating a dependency on the location of the git
> repository. Whenever the git repository is moved, the sharedpath must
> be updated to reflect the new absolute path.
>
> Check mercurial sharedpath file when getting the local hg repository,
> and update it manually with the new path if necessary.
>
> Signed-off-by: Antoine Pelisse <apelisse@gmail.com>
> ---
By the way, this is the only link [1] I found about both relative path
and updating the file. So it looks like there is no other way to
update the path but to write the file manually.
[1]: http://bz.selenic.com/show_bug.cgi?id=2006
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] remote-hg: fix hg sharedpath when git clone is moved
2013-11-23 12:38 [PATCH] remote-hg: fix hg sharedpath when git clone is moved Antoine Pelisse
2013-11-23 12:46 ` Antoine Pelisse
@ 2013-11-23 16:32 ` Felipe Contreras
2013-11-23 16:35 ` Antoine Pelisse
1 sibling, 1 reply; 4+ messages in thread
From: Felipe Contreras @ 2013-11-23 16:32 UTC (permalink / raw)
To: Antoine Pelisse; +Cc: git
On Sat, Nov 23, 2013 at 6:38 AM, Antoine Pelisse <apelisse@gmail.com> wrote:
> remote-hg is using a mercurial shared clone to store all remotes objects
> in one place. Unfortunately, the sharedpath is stored as an absolute
> path by mercurial, creating a dependency on the location of the git
> repository. Whenever the git repository is moved, the sharedpath must
> be updated to reflect the new absolute path.
>
> Check mercurial sharedpath file when getting the local hg repository,
> and update it manually with the new path if necessary.
>
> Signed-off-by: Antoine Pelisse <apelisse@gmail.com>
https://github.com/felipec/git/commit/270e7ff91a4a34e8bc27edb6bd7d7473b886f568
--
Felipe Contreras
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] remote-hg: fix hg sharedpath when git clone is moved
2013-11-23 16:32 ` Felipe Contreras
@ 2013-11-23 16:35 ` Antoine Pelisse
0 siblings, 0 replies; 4+ messages in thread
From: Antoine Pelisse @ 2013-11-23 16:35 UTC (permalink / raw)
To: Felipe Contreras; +Cc: git
On Sat, Nov 23, 2013 at 5:32 PM, Felipe Contreras
<felipe.contreras@gmail.com> wrote:
> On Sat, Nov 23, 2013 at 6:38 AM, Antoine Pelisse <apelisse@gmail.com> wrote:
>> remote-hg is using a mercurial shared clone to store all remotes objects
>> in one place. Unfortunately, the sharedpath is stored as an absolute
>> path by mercurial, creating a dependency on the location of the git
>> repository. Whenever the git repository is moved, the sharedpath must
>> be updated to reflect the new absolute path.
>>
>> Check mercurial sharedpath file when getting the local hg repository,
>> and update it manually with the new path if necessary.
>>
>> Signed-off-by: Antoine Pelisse <apelisse@gmail.com>
>
> https://github.com/felipec/git/commit/270e7ff91a4a34e8bc27edb6bd7d7473b886f568
Or that, indeed :-)
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-11-23 16:35 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-23 12:38 [PATCH] remote-hg: fix hg sharedpath when git clone is moved Antoine Pelisse
2013-11-23 12:46 ` Antoine Pelisse
2013-11-23 16:32 ` Felipe Contreras
2013-11-23 16:35 ` Antoine Pelisse
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).