7 lines
246 B
Bash
7 lines
246 B
Bash
# use --global flag if you want to set it for whole machine
|
|
git config user.name "Michael Melesse"
|
|
git config user.email "micmelesse@gmail.com"
|
|
|
|
# unset with
|
|
# git config --global --unset-all user.name
|
|
# git config --global --unset-all user.email |