mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 03:22:08 +02:00

* git-a*: add and update Korean translation * git-b*: add and update Korean translation * git-*: add and update Korean translation * Update git-standup.md --------- Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
770 B
770 B
git reauthor
작성자 신원에 대한 세부 정보를 변경합니다. 이 명령은 Git 기록을 재작성하므로 다음 푸시 시
--force
가 필요합니다.git-extras
의 일부입니다. 더 많은 정보: https://github.com/tj/git-extras/blob/master/Commands.md#git-reauthor.
- Git 저장소 전체에서 작성자의 이메일과 이름 변경:
git reauthor --old-email {{old@example.com}} --correct-email {{new@example.com}} --correct-name "{{name}}"
- Git 설정에 정의된 이메일과 이름으로 변경:
git reauthor --old-email {{old@example.com}} --use-config
- 원래 작성자와 관계없이 모든 커밋의 이메일과 이름 변경:
git reauthor --all --correct-email {{name@example.com}} --correct-name {{name}}