0

Is there a command line/UI tool to view git repo structure like branches, commits etc in visual form. I have many branches and done many commits. It will be easy to see these in visual form.

αƞjiβ
  • 3,056
  • 14
  • 58
  • 95

3 Answers3

2

Assuming you have a GUI on whichever OS you're running, gitk is a fairly powerful graphical UI for git that comes with most distributions.

Adam H
  • 1,523
  • 11
  • 21
1

Depending on how detailed you want to go, git-log has some nifty options available to you.

This is a command I use to only see select commits, decorated with their branch/tag:

git log --graph --oneline --decorate

Other UI components exist, like gitk.

Makoto
  • 104,088
  • 27
  • 192
  • 230
0

Not totally sure if this is what you're looking for, but SourceTree will give you a visual depiction of your branches and commits.

grownupteeth
  • 131
  • 2
  • 12