java|git 查看提交哈希值_如何在git中获取最新提交的哈希()
git 查看提交哈希值
I am looking for a better method for getting the latest commit’s hash in git.
我正在寻找一种更好的方法来获取git中最新commit的哈希值。
I know git log -1
can show the info of the latest commit and from the info of the latest commit I can use grep and other tools to get the hash.
我知道git log -1
可以显示最新提交的信息,根据最新提交的信息,我可以使用grep和其他工具来获取哈希。
Is there better method supported from git?
git支持更好的方法吗?
Note: a better method is introduced in this QA.
注意: 此质量检查中引入了更好的方法。
You can use the --format
option of git log
:
您可以使用git log
的--format
选项:
git log -n1 --format=format:"%H"
【java|git 查看提交哈希值_如何在git中获取最新提交的哈希()】Here, “%H” means “commit hash”.
在此,“%H”表示“提交哈希”。
For explanation and other options of the format string, please check git log manual.
有关格式字符串的说明和其他选项,请检查git log手册 。
Answered by Eric Z Ma. 埃里克·马(Eric Z Ma)回答。
翻译自: https://www.systutorials.com/how-to-get-the-latest-commits-hash-in-git/git 查看提交哈希值
推荐阅读
- JAVA(抽象类与接口的区别&重载与重写&内存泄漏)
- 事件代理
- Java|Java OpenCV图像处理之SIFT角点检测详解
- gitlab|gitlab 通过备份还原 admin/runner 500 Internal Server Error
- java中如何实现重建二叉树
- Linux下面如何查看tomcat已经使用多少线程
- 数组常用方法一
- 【Hadoop踩雷】Mac下安装Hadoop3以及Java版本问题
- gitlab|Gitlab升级(12.2.1到14.6.4)
- Java|Java基础——数组