Windows XPでHgリポジトリを新しくクローンしました。hg status
は、多くの(すべて?)ファイルをM
odifiedとして報告します。理由は何でしょうか?でもhg revert --all --no-backup
、hg diff --git
報告を行った後新しく複製されたhgリポジトリは、変更されたファイルを表示します。
E:\myprojects\myproject>hg summary
parent: 206:03856faec803 tip
latest commit message
branch: default
commit: 78 modified
update: (current)
:
diff --git a/path/to/file1 b/path/to/file1
--- a/path/to/file1
+++ b/path/to/file1
@@ -1,332 +1,332 @@
-line1
-line2
...
-line332
+line1
+line2
...
+line332
diff --git a/path/to/file2 b/path/to/file2
--- a/path/to/file2
+++ b/path/to/file2
@@ -1,231 +1,231 @@
...
line231
\ No newline at end of file
を確認してください、あなたは 'HG status'の結果を表示することができます。出力の少なくとも一部 –
結果を正確に貼り付けることができますか(クローンコマンド、hg statusコマンド、およびその結果...)? – Rook
本当にすてきなことはありません。 'hg status'を呼び出すと、クローン直後の' M'( 'hgクローンssh://ユーザ@サーバ: /repository.hg E:\ myproject')だけですべてのファイルが表示されます。 –
Mot