0

この変更を加えた nopcommorce のコードをダウンロードしたい

http://nopcommerce.codeplex.com/SourceControl/changeset/f438f188fa4e

これを取得するには、コードを複製しますが、クローンを作成するわけではありません。エラーが発生しました

% hg clone --verbose -- https://hg.codeplex.com/nopcommerce .
requesting all changes
adding changesets
adding manifests
adding file changes
transaction abort!
rollback completed
abort: stream ended unexpectedly (got 1718536 bytes, expected 3694604)
[command returned code 255 Sat Oct 27 14:51:03 2012]
% hg clone --verbose -- https://hg.codeplex.com/nopcommerce .
requesting all changes
adding changesets
adding manifests
adding file changes
transaction abort!
rollback completed
abort: stream ended unexpectedly (got 997670 bytes, expected 5238782)
[command returned code 255 Sat Oct 27 14:53:37 2012]

誰かが私にそれを機能させる方法を教えてもらえますか. tortoseHG と tortoiseSVN の両方がインストールされています。最近の変更でコンピューターにコードを取得する方法。

4

1 に答える 1

1
  • これはMercurialレポです。hgのみを使用する必要があります
  • これは大きなレポです。そのような場合、いくつかのヒント以外のリビジョンにクローンを作成し、プルのセットがより適切に機能する可能性があります (クローン|プルの -r オプション)

% hg clone --verbose -- https://hg.codeplex.com/nopcommerce .

requesting all changes

adding changesets

adding manifests

adding file changes

added 3021 changesets with 54579 changes to 15033 files (+6 heads)

...

4280 files updated, 0 files merged, 0 files removed, 0 files unresolved

[command completed successfully Sat Oct 27 15:48:37 2012]

于 2012-10-27T09:56:14.983 に答える