Git - Show

About

git show 1) is a general command line tool that shows information about object

Basically

git show hash

where hash is the object hash

  • for commits it shows the log message and textual diff. It also presents the merge commit in a special format as produced by git diff-tree –cc.
  • for tags, it shows the tag message and the referenced objects.
  • for trees, it shows the names (equivalent to git ls-tree with –name-only).
  • for plain blobs, it shows the plain contents.





Discover More
Git - Tag

This page is tagging in git Git has the ability to tag specific points in history as being important. Typically this functionality is used to mark release points (v1.0, and so on). Git uses two main...



Share this page:
Follow us:
Task Runner