3

我正在尝试在 groovy 中执行 git shell 命令。第一个执行良好,但第二个返回退出代码 128:

   def workingDir = new File("path/to/dir")
   "git add .".execute(null, workingDir)
   def p = "git reset --hard".execute( null, workingDir )
   p.text.eachLine {println it}
   println p.exitValue()

这段代码有什么问题?

4

1 回答 1

4

第二个过程在第一个过程完成之前开始。当第二个 git 进程启动时,git 会识别出同一目录中已经有一个 git 进程在运行,这可能会导致问题,因此会出错。如果您从第一个进程读取错误流,您将看到如下内容:

fatal: Unable to create 'path/to/dir/.git/index.lock': File exists.

If no other git process is currently running, this probably means a
git process crashed in this repository earlier. Make sure no other git
process is running and remove the file manually to continue.

如果您在开始第二个之前等待第一个完成,那应该可以。像这样的东西:

def workingDir = new File("path/to/dir/")

def p = "git add .".execute(null, workingDir)
p.waitFor()
p = "git reset --hard".execute( null, workingDir )
p.text.eachLine {println it}
println p.exitValue()
于 2014-04-16T22:09:34.170 回答