0

我需要使用 grgit API 在我的 groovy 脚本中读取具有以下 git 远程 url 的 .git 文件夹。

url = git@github.com:***/****.git

你能帮忙吗

4

1 回答 1

0

我可以做如下

import org.ajoberstar.grgit.Grgit

Grgit git = new Grgit()
def gitRoot = project.hasProperty('git.root') ? project.property('git.root') : project.rootProject.projectDir
git = Grgit.open(dir: gitRoot)
System.out.println("git.remote.list().url -->"+git.remote.list().url)
于 2021-02-03T10:44:11.027 回答