Git学习之Git对象

=============================
Git对象
=============================
 (1) 查看日志
  $ git log -l --pretty=raw
 (2) 查看Git 对象的ID的类型
  $ git cat-file -t 2d392
 (3) 查看Git 对象的内容
  $ git cat-file -p 2d392
 (4) 查看对象在对象库中的位置
  $ for id in abe84366 b52c32e 6ed5ee6;
  do \ ls .git/objects/${id:0:2}/${id:2}*;
  done
 (5) 查看跟踪链
  git log --pretty=raw --graph e695606
 (6) 查看当前分支
  git branch
 (7) 显示引用对应的提交ID
  git rev-parse master

==============================
SHA1 哈希值
==============================
 (1) 查看HEAD对应的提交的内容
  git cat-file commit HEAD
 (2) 查看提交信息中包含的字符数
  git cat-file commit HEAD | wc -c
 (3) 在提交信息的前面加上内容 commit 234<null>(<null>为空字符)
  执行哈希算法
  ${printf "commit 234\000"; git cat-file commit HEAD} | shalsum
 (4) 查看版本库中文件的内容
  git cat-file blob HEAD:1.txt
 (5) 文件包含的字节数(大小)
  git cat-file blob HEAD:1.txt | wc -c

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值