非常に基本的な git の質問:
危うい情報を Github にアップロードし、bfg を使用してレポをクリーンアップしています。ドキュメントに従い、次のアクションを実行しました。
$ git clone --mirror git://example.com/some-big-repo.git
$ bfg --replace-text passwords.txt my-repo.git
次の出力を受け取りました。
Found 233 objects to protect
Found 9 commit-pointing refs : HEAD, refs/heads/experimental, refs/heads/master, ...
Protected commits
-----------------
These are your protected commits, and so their contents will NOT be altered:
* commit 497fc1c8 (protected by 'HEAD')
Cleaning
--------
Found 80 commits
Cleaning commits: 100% (80/80)
Cleaning commits completed in 301 ms.
BFG aborting: No refs to update - no dirty commits found??
個人情報がリポジトリから消去されたかどうかを確認したいのですが、ミラー化されたリポジトリ内のファイルを確認する方法がわかりません。何か案は?