Link Search Menu Expand Document

glog / gshow

Show the status of the repository including staged, unstaged and untracked files.

Table of contents

  1. Demo
  2. Internals
  3. Implementation

Demo

Internals

git log
show commit logs.

git log --pretty='format:%C(auto)%h%d [%an] [%ar] %s' --graph
pretty-print the contents of the commit logs in a given format.
draw a text-based graphical representation of the commit history

git show <commitSHA>
show various types of objects

Implementation