如何获取作者对git repo的最新提交的名称?
#!/bin/bash
git_log=`git ls-remote git url master`
git_commitId = git_log | cut -d " " -f1
echo $git_commitId
cd /workspace
git_log_verify = `git rev-parse HEAD`
echo $git_log_verify
if $git_commitId =$git_log_verify then
cd /workspace
git_authorName=`git log --pretty=format:"%an"`;
echo $git_authorName
fi
答案 0 :(得分:38)
这就是你要找的东西:
git log -1 --pretty=format:'%an'
答案 1 :(得分:3)
如何在 Groovy 中赋值给变量:
def builtBy = sh(returnStdout: true, script: "git log -n 1 --pretty=format:'%an'").trim()
答案 2 :(得分:1)
要获取作者姓名:
APP_URL
要获取作者电子邮件:
git log -1 --pretty=format:'%an'
答案 3 :(得分:0)
或者检索作者的电子邮件,而不是姓名:
git log -1 --pretty=format:'%ae'