GitHub 잘못된 커밋 이메일 복구하기 (잔디 복구) 🌿

자동화 스크립트 brew install git-filter-repo git filter-repo --commit-callback ' if commit.author_name != b"dependabot[bot]": commit.author_name = b"D3vle0" commit.author_email = b"44903787+D3vle0@users.noreply.github.com" if commit.committer_name != b"dependabot[bot]": commit.committer_name = b"D3vle0" commit.committer_email = b"44903787+D3vle0@users.noreply.github.com" ' 내 이름과 이메일이 아닌 커밋을 내 커밋으로 변경하는 스크립트다. 적용 결과

April 6, 2026 · 1 min · 41 words · Me