TFS 2013 Tracking changes (ending) with GIT

With Team Foundation Version Control, we have a good opportunity to visualize a changeset. Hierarchy and timeline. How can I get information about the same type with a GIT repository? I can't find anything useful.

Tracking the hierarchy Hierarchy Tracking

Timeline view

Timeline view

+3


source to share


1 answer


I'm not sure if the Visual Studio git client has any visualizations like the built-in ones, but since the TFS Server git repository is a standard git repo pipeline, you can use any git snap-in you have.

I know Source Tree has nice visualization: https://www.atlassian.com/software/sourcetree/overview



Also the git command line client has:

git -log --graph

      

+3


source







All Articles