1

I have used clearcase. We have clearvtree command to show the version tree of a particular file. Is there a command in git to show the version tree of a file, visually?

a3.14_Infinity
  • 5,153
  • 6
  • 39
  • 63

1 Answers1

3

You can call gitk on a singular file:

gitk -- aFile

As mentioned in "Viewing full version tree in git":

You can tell gitk what to display using anything that git rev-list understands,

Note that you can get a similar result, directly in command-line: see "Unable to show a Git tree in terminal".

Community
  • 1
  • 1
VonC
  • 1,129,465
  • 480
  • 4,036
  • 4,755