“Git Change Commit Author” Código de respuesta

Cómo cambiar el autor de Git

git commit --amend --author="Author Name <[email protected]>" --no-edit
Healthy Horse

Git Change Commit Author para todos los compromisos

# 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 Change Commit Author

 git rebase -i HEAD~2
 git commit --amend --author="Cesar Bueno <[email protected]>"
 git rebase --continue
Concerned Caiman

Git Last Commit Change Autor

git commit --amend --author="John Doe <[email protected]>"
Lucky Lark

Git Change Autor de las últimas 2 Commits

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

Respuestas similares a “Git Change Commit Author”

Preguntas similares a “Git Change Commit Author”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código