How to Change Your Global Git User Name and Email
When you first use git on a machine, you’ll need to configure your identity. Git uses these credentials to author your commits: git config –global user.name “Your Name” git config –global user.email you@example.com These settings are stored in ~/.gitconfig and apply to all repositories on your system. Verifying your configuration Check what you’ve set: git…
