Mengatur konfigurasi git untuk beberapa akun

# to set user on a per repo basis run the following commands in the project/repo root directory
git config user.name "My Special Repo Account User Name"
git config user.email [email protected]

# to set a global/default git user run the following commands anywhere
git config --global user.name "My Default Account User Name"
git config --global user.email [email protected]
Anxious Alligator