mirror of
https://github.com/tldr-pages/tldr
synced 2026-08-26 14:13:36 +01:00
840 B
840 B
git reauthor
작성자 신원에 대한 세부 정보를 변경합니다. 이 명령은 Git 기록을 재작성하므로 다음 푸시 시
--force가 필요합니다.git-extras의 일부입니다. 더 많은 정보: https://github.com/tj/git-extras/blob/main/Commands.md#git-reauthor.
- Git 저장소 전체에서 작성자의 이메일과 이름 변경:
git reauthor {{[-o|--old-email]}} {{old@example.com}} {{[-e|--correct-email]}} {{new@example.com}} {{[-n|--correct-name]}} "{{name}}"
- Git 설정에 정의된 이메일과 이름으로 변경:
git reauthor {{[-o|--old-email]}} {{old@example.com}} {{[-c|--use-config]}}
- 원래 작성자와 관계없이 모든 커밋의 이메일과 이름 변경:
git reauthor {{[-a|--all]}} {{[-e|--correct-email]}} {{name@example.com}} {{[-n|--correct-name]}} {{name}}