Answers for "git ammend commit author"

1

git commits by author

# commits by author
git shortlog -s --author="authorName"
# for all authors
git shortlog -sn --all
Posted by: Guest on June-22-2020
0

git change author of last 2 commits

git rebase -i YOUR_SHA -x "git commit --amend --author 'New Name <[email protected]>' -CHEAD"
Posted by: Guest on November-13-2020
0

Git command to Change the Author Information Just for the Next Commit

git commit --author="soft hunt <[email protected]>"
Posted by: Guest on April-10-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language