📜  重置未跟踪的文件 - Kotlin 代码示例

📅  最后修改于: 2022-03-11 14:53:33.802000             🧑  作者: Mango

代码示例1
How to remove local untracked files from the current Git branch
To remove directories, run git clean -f -d or git clean -fd.
To remove ignored files, run git clean -f -X or git clean -fX.
To remove ignored and non-ignored files, run git clean -f -x or git clean -fx.