Git CMD

命令格式

git show [options] <object>…​

实例

a) 查看某次提交的信息

$ git show <commit>

b) 查看远程仓库的信息。

git remote show origin

c) 查看 tag 信息。

$ git show <tag>

更多

http://git-scm.com/docs/git-show

原文地址:https://www.cnblogs.com/huey/p/5092283.html