我想找到一种使用git clean
.
没有正则表达式:
git clean -dfx --exclude=".idea/"
使用正则表达式(尝试过;不工作):
git clean -dfx --exclude='(.*\/)*(\.idea\/.*)(.*)'
git clean -dfx --exclude="(.*\/)*(\.idea\/.*)(.*)"
git clean -dfx --exclude=r'(.*\/)*(\.idea\/.*)(.*)'
git clean -dfx --exclude=r"(.*\/)*(\.idea\/.*)(.*)"
你如何使用git clean
正则表达式?