How do (shortcut) to show the author of that line, which Git provides to the left side of the code line numbers?
How do (shortcut) to show the author of that line, which Git provides to the left side of the code line numbers?
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.)
In VS 2015: Right click on the code, source control, anotate this version! simple!