문제

Can I add options to .hgignore or .hgrc such that symbolic links are automatically ignored in order to avoid clutter of hg status?

A solution like find -type l >> .hgignore is infeasible as it tends to become slow, unmanageable and ugly.

도움이 되었습니까?

해결책

No, there is no options for ignoring certain types of files. The only thing you can match on it the filename.

People typically handle this by making sure that the files they want ignored follow a pattern so they can be matched with a glob or regex pattern — or they make sure that these files are in a common subdirectory and ignore that.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top