79627568

Date: 2025-05-18 15:22:52
Score: 0.5
Natty:
Report link

This is certainly due to missing username and email in the global configuration of git. Easy way to solve this is through IDE:

Git settings navigation in Visual Studio

Enter name and email for git global configuration through Visual Studio


These actions performed are equivalent to CLI approach of:

git config --global user.name "Your Username"
git config --global user.email "[email protected]"

P.S.: It'd be good to set the "Default Branch Name" to main as it defaults to master.

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Devik