[git] commit 로그 유저 변경

# n = 가장 최신 커밋으로 부터 몇 개를 바꿀 것인지
$ git rebase -i HEAD~{n}

# 바꿀 커밋을 pick에서 e로 바꾼다
e b2f9241 itertools 라이브러리 디렉터리 분리
e 836d784 bs4 라이브러리 디렉터리 분리
e 4e8b766 threading 라이브러리 디렉터리 분리
e 401c1e8 googletrans 라이브러리 디렉터리 분리
e a3ff398 pyautogui 라이브러리 디렉터리 분리

# 유저 이름과 메일 작성 ex) woogieReal<woogiereal@gmail.com>
$ git commit --amend
$ git commit --amend --author="{author<emial>}"

# 모든 커밋에 반복

links

social