“Git Change Autor múltiples comodidades” Código de respuesta

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 Autor múltiples comodidades

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 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 Autor múltiples comodidades”

Preguntas similares a “Git Change Autor múltiples comodidades”

Más respuestas relacionadas con “Git Change Autor múltiples comodidades” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código