如何获取作者对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
Run Code Online (Sandbox Code Playgroud)
Joh*_*pit 46
这就是你要找的东西:
git log -1 --pretty=format:'%an'
Run Code Online (Sandbox Code Playgroud)
获取作者姓名:
git log -1 --pretty=format:'%an'
Run Code Online (Sandbox Code Playgroud)
要获取作者电子邮件:
git log -1 --pretty=format:'%ae'
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
9619 次 |
| 最近记录: |