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?
            Asked
            
        
        
            Active
            
        
            Viewed 138 times
        
    1 Answers
3
            You can call gitk on a singular file:
gitk -- aFile
As mentioned in "Viewing full version tree in git":
You can tell
gitkwhat to display using anything thatgit rev-listunderstands,
Note that you can get a similar result, directly in command-line: see "Unable to show a Git tree in terminal".
 
     
    