我的系统是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
相同。
我的脚本有问题吗?