标签: python git subprocess
在脚本中,我正在进行git commit
def test(): ...: subprocess.call(['git','--no-pager','commit','-m',"no pager test"]) ...: print "hello"
我在线阅读后添加了无寻呼机选项,但它没有用。在运行test()时,您可以看到“hello”将不会被打印。