0

Is there an Mercurial extension that removes lines from .hgignore that aren't matching any files in the local repository.

4

1 に答える 1

2

これを行う拡張機能や組み込み関数はありません。スクリプトをジェリーリグして、あまり多くの作業をせずに何も無視していない行を見つけることができますが、これはおそらく悪い考えだと考えてください。

.hgignore行がローカルリポジトリのファイルと一致していないからといって、他のリポジトリのファイルと一致していないとは限りません。.hgignoreファイル内には.swp、やのようなパターンがよく見られます.bak。vi(.swpファイルを作成する)を使用しない場合や、' files, but other do. Or perhaps your editor creates .swp files but you don't currently have any because you're not actively editing a file. Removing that line means you'd not be ignoring a .swp file next time you had one and.bakhgaddremove`を作成するエディターを使用しない場合は追跡される可能性があります。

于 2013-03-12T14:09:58.957 に答える