Created
March 7, 2018 09:50
-
-
Save dermanov-ru/b293a00e2fd484a54ba30ddbc3f28763 to your computer and use it in GitHub Desktop.
Git
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# изменить автора коммита | |
1) в консоли начать ребейз | |
git rebase -i -p <some HEAD before all of your bad commits> | |
2) изменить автора каждому коммиту без открытия редактора | |
git commit --amend --author "Mark <[email protected]>" --no-edit && git rebase --continue | |
Заметка: | |
пхпшторм при интерактивном ребейзе не меняем автора коммита. или я не понял, как это сделать. | |
--- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment