Show line source code in Visual Studio (Git)

0

How do (shortcut) to show the author of that line, which Git provides to the left side of the code line numbers?

    
asked by anonymous 16.05.2016 / 18:41

2 answers

1

You can use git blame for this. It shows the last person who changed each line of the file, plus more information (hash of the commit, date, etc.)

    
16.05.2016 / 18:45
0

In VS 2015: Right click on the code, source control, anotate this version! simple!

link

    
16.05.2016 / 18:53