为了账号安全,请及时绑定邮箱和手机立即绑定

DevOps之git日志信息解读

标签:
Html5 Go

DevOps之git日志信息解读

1    版本信息

echo "解读commit数据进行镜像版本指定"$current_git_branch_latest_id=`git rev-parse HEAD`$current_git_branch_latest_short_id=`git rev-parse --short HEAD`$echo current git branch latest commit id=$current_git_branch_latest_id$echo current git branch latest commit short $id=$current_git_branch_latest_short_id# 提交的commit信息$echo $id

2    提交作者

$author=`git log --pretty=format:“%an” $current_git_branch_latest_id -1`$echo $author

3    提交时间

$date=`git log --pretty=format:“%cd” $current_git_branch_latest_id -1`$echo $date

4    提交message

$message=`git log --pretty=format:“%s” $current_git_branch_latest_id -1`$echo $message

5    完整信息

$current_git_branch_latest_id=`git rev-parse HEAD`$current_git_branch_latest_short_id=`git rev-parse --short HEAD`$echo current git branch latest commit id=$current_git_branch_latest_id$echo current git branch latest commit short $id=$current_git_branch_latest_short_id

总结

版本解析的问题,对于CI/CD系统建设具有十分重要的作用,研制Devops开发流程,实现代码的中间操作,完成对于代码的定制,具有十分重要的作用。

本文由博客作者流雨声
github地址:https://github.com/vpc123

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
全栈工程师
手记
粉丝
0
获赞与收藏
2

关注作者,订阅最新文章

阅读免费教程

  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消