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 -fGitPython を使用するような方法はありますか?
git clean -d -x -f
.git作業ディレクトリをリセットする必要があり、フォルダ全体 (を除く) を削除して再度チェックアウトすることなく、バージョン管理されていないすべてのファイルを削除したいと考えています。
.git
gitgitpython からコマンドを直接使用することで回避できます。
git
git = repo.git git.clean('-xdf')