
자동화 스크립트
1brew install git-filter-repo
1git filter-repo --commit-callback ' 2if commit.author_name != b"dependabot[bot]": 3 commit.author_name = b"<깃허브 닉네임>" 4 commit.author_email = b"<깃허브 이메일>" 5if commit.committer_name != b"dependabot[bot]": 6 commit.committer_name = b"<깃허브 닉네임>" 7 commit.committer_email = b"<깃허브 이메일>" 8'
내 이름과 이메일이 아닌 커밋을 내 커밋으로 변경하는 스크립트다.
적용 결과
