fatal: unable to auto-detect email address
set global and global user.name and user.email parameters # Check the details locally and globally git config --local -l git config --global -l # Set user.name and user.email locally and globally # Considering my name is name git config --global user.name "name" git config --global user.email "name@gmail.com" git config --local user.name "name" git config --local user.email "name@gmail.com" # Check the changes again using 3 and 4 # Commit the changes now git commit -m "Commit changes" # Should work now without any error