git은 author, committer가 따로 있습니다. 보통은 둘이 동일하지만, 리베이스를 한다든지 여러 이유로 달라질 수 있습니다.
~~ authored and ~~ committed on ~
그럼 깃허브에서는 이렇게 나오게 되는데요, committer를 바꾸고 싶다면 리베이스 후 커밋할 때 --amend --reset-author를 해줘야 합니다.
git rebase -r <some commit before all of your bad commits> \
--exec 'git commit --amend --no-edit --reset-author'
참고
반응형
'version control > git' 카테고리의 다른 글
[GitHub] actions 이용한 github pages 배포 방법 (베타) (0) | 2022.09.16 |
---|---|
[git] 최근 여러 커밋 author 변경 방법 (0) | 2022.08.25 |
[GitHub] github pages만으로 여러 스테이지 배포하기 (0) | 2022.06.23 |
[git] filter-branch 이용한 author name, email 변경 방법 (0) | 2022.06.05 |
[git] blame '--ignore-rev' 사용법 (0) | 2022.06.05 |