idea不显示隐藏文件,方便git提交

参考地址:https://blog.csdn.net/BlackPlus28/article/details/80549571


路径 :File->Settings ->Editor ->File Types 

*.hprof;*.pyc;*.pyo;*.rbc;*.yarb;*~;.DS_Store;.git;.hg;.svn;CVS;__pycache__;_svn;vssver.scc;vssver2.scc;

在后面追加 

.idea;*.iml;

最后变成:

*.hprof;*.pyc;*.pyo;*.rbc;*.yarb;*~;.DS_Store;.git;.hg;.svn;CVS;__pycache__;_svn;vssver.scc;vssver2.scc;.idea;*.iml;

执行保存就好;

你可能感兴趣的:(idea不显示隐藏文件,方便git提交)