如何从git ls-files --others --exclude-standard`中排除指定的文件夹和文件?

时间:2019-01-29 09:02:22

标签: git

我的系统是git 1.8.3 的centos 7.4。

我知道git ls-files --others --exclude-standard > transfer_list将列出所有未跟踪的文件(还包括空文件夹)。
下一步,我想从idea中排除整个文件夹.scrutinizer.yml和文件transfer_list

我的脚本如下:

git ls-files --others --exclude-standard --exclude=idea/ --exclude=.scrutinizer.yml > transfer_list  

我不确定--exclude=的语法是否与,gitignore相同。
我的脚本有问题吗?

0 个答案:

没有答案