Git Push 이 후에 GitHub에서 노출되는 username과 email을 변경 설정해보자.

git config --global user.name
git config --global user.email

위와 같이 명령어를 입력하면 현재 git에서의 username과 email 정보를 확인 할 수 있다.

git config --global user.name "haru"
git config --global user.email "haru@aaa.aaa"

원하는 username과 email을 위와 같이 입력하면 commit history에서 변경된 정보로 확인 가능하다.