简体   繁体   中英

How to get / view the log history of multiple git repositories in tfs

Im using tfs and I need to view the log history of all the git repositories that are present. What is the best approach ?

You can use git log for tracking multiple repositories, the git log output is very configurable so its really easy to get a clearer picture with the useful options included.

Install git bash > Navigate to the local repository > Right click .git or Project folder > Git Bash Here > Run git log command

Example:

git log --oneline --decorate --graph --all 

You can also run gitk --all to see the details.

For details please see: Git Log Makes Multiple Repos Easier to Track

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM