0

ユーザーが Apache でホストされている Mercurial リポジトリから新しい変更をプルできるようにする必要があるワークフローがありますが、新しいクローンを作成することはできません。

これを行う方法についてのアイデアはありますか?

ありがとう

  • hgweb.wsgi を使用して、apache vhost を使用してリポジトリを提供します (回避策を受け入れます)
4

2 に答える 2

2

Aの後に a が続くcloneだけなので、プルを壊さずにクローン作成を停止することはできません。initpull

于 2013-03-11T19:03:29.303 に答える
1

最も簡単な方法は、通常の HTTP 経由でバンドルを公開し、ユーザーがそれらをダウンロードして適用できるようにすることです。参照hg help bundle:

Generate a compressed changegroup file collecting changesets not known to
be in another repository.

The bundle file can then be transferred using conventional means and
applied to another repository with the unbundle or pull command. This is
useful when direct push and pull are not available or when exporting an
entire repository is undesirable.

Applying bundles preserves all changeset contents including permissions,
copy/rename information, and revision history.
于 2013-03-11T10:04:17.650 に答える