Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法像git clean -d -x -f使用 GitPython 一样做一些事情?
git clean -d -x -f
我需要重置工作目录并希望摆脱所有未版本控制的文件而不删除整个文件夹(除了.git)并再次签出。
.git
您可以通过gitgitpython 直接使用命令来解决
git
git = repo.git git.clean('-xdf')