“Git ändern Autor Mehrere Commits” Code-Antworten

Git Change Commit Autor für alle Commits

# Changes the username and email of all commits from the start.
git rebase -i --root -x "git commit --amend --author='YOUR_USERNAME <[email protected]> --no-edit'"
eiymba

Git ändern Autor Mehrere Commits

git config --global user.name "John Doe"
git config --global user.email [email protected]

git rebase -i YOUR_SHA -x "git commit --amend --reset-author -CHEAD"
Amichai Mantinband

Git Change Autor der letzten 2 Commits

git rebase -i YOUR_SHA -x "git commit --amend --author 'New Name <[email protected]>' -CHEAD"
firststef

Ähnliche Antworten wie “Git ändern Autor Mehrere Commits”

Fragen ähnlich wie “Git ändern Autor Mehrere Commits”

Weitere verwandte Antworten zu “Git ändern Autor Mehrere Commits” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen