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.
在 Windows 上通过 py2exe 使用 gitpython 时,gitpython 调用的每个操作都会导致一个 cmd 弹出窗口。似乎是 gitpython 在内部使用子进程。有没有办法在 gitpython 中指定以下等效项?
creationflags=win32process.CREATE_NO_WINDOW
找到了解决方案。解决此问题的方法是为 gitpython 执行此操作,即在使用 Git() 对象之前进行设置。
Git.USE_SHELL=True