# 获取完整commit id
git rev-parse HEAD
# 获取short commit id(7位)
git rev-parse --short HEAD
1
2
3
4
git rev-parse --short HEAD
// 默认7位
6c11cbb
1
2
3