5

サブリポジトリを bitbucket にプッシュしようとすると、次のエラーが発生しました。

D:\Work\agile.crm.framework>hg push
warning: bitbucket.org certificate with fingerprint 81:2b:08:90:dc:d3:71:ee:e0:7
c:b4:75:ce:9b:6c:48:94:56:a1:fe not verified (check hostfingerprints or web.cace
rts config setting)
http authorization required
realm: Bitbucket.org HTTP
user: the_drow
password:
warning: bitbucket.org certificate with fingerprint 81:2b:08:90:dc:d3:71:ee:e0:7
c:b4:75:ce:9b:6c:48:94:56:a1:fe not verified (check hostfingerprints or web.cace
rts config setting)
pushing to https://the_drow@bitbucket.org/the_drow/agile.crm.framework
pushing subrepo Logging to https://the_drow@bitbucket.org/the_drow/agile.crm.fra
mework/Logging
warning: bitbucket.org certificate with fingerprint 81:2b:08:90:dc:d3:71:ee:e0:7
c:b4:75:ce:9b:6c:48:94:56:a1:fe not verified (check hostfingerprints or web.cace
rts config setting)
abort: HTTP Error 404: NOT FOUND

問題の解決方法を説明するこのリンクに遭遇しましたが、何をすべきかわかりません。
Logging サブリポジトリを に配置する必要がありD:\Work\ますか?
水銀サブパスで正確に何をすべきですか? これにより、ローカルでクローンを作成できますか?

編集:要求に応じて、ここに私の.hgsubファイルの内容があります

Logging = Logging
4

2 に答える 2

13

投稿したリンクに記載されているように、「サブリポジトリをメインリポジトリの兄弟として作成する必要があります。」

したがって、BitBucket では、次の構造が必要です。

https://bitbucket.org/the_drow/agile.crm.framework
https://bitbucket.org/the_drow/Logging

次に、.hgsub内部agile.crm.frameworkに次のものが含まれている必要があります。

Logging = ../Logging

于 2011-05-11T17:21:57.497 に答える