Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TFS 2013 Tracking Changeset(commits) with GIT

With Team Foundation Version Control we have nice ability to visualize changesets. Hierarchy and Timeline view. How can I get same type of information with GIT repository? I can't find anything useful.

Hierarchy Tracking Hierarchy Tracking

Timeline view

Timeline view

like image 309
Chatumbabub Avatar asked Feb 05 '26 23:02

Chatumbabub


1 Answers

I'm not sure the Visual Studio git client has any visualizations like those built-in, but since the TFS Server Git repo is a standard git repo, you can use any git tooling available.

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

Also the git command-line client has:

git -log --graph
like image 140
Dylan Smith Avatar answered Feb 08 '26 17:02

Dylan Smith