You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notes about git config --global and git config --local for setting identity like user.name and user.email.
Also note about changing the author of a commit by performing an interactive rebase, git rebase -i HEAD~n with edit <commit>... and git rebase --amend --author="Michelle Blanchette <michelle@purpleturtlecreative.com>" --no-edit and then git rebase --continue.
The text was updated successfully, but these errors were encountered:
Would also be nice if you could document the config credential.helper=store for securely storing git credentials for like GitHub password/PAT so that I have the complete setup process documented.
Notes about
git config --global
andgit config --local
for setting identity likeuser.name
anduser.email
.Also note about changing the author of a commit by performing an interactive rebase,
git rebase -i HEAD~n
withedit <commit>...
andgit rebase --amend --author="Michelle Blanchette <michelle@purpleturtlecreative.com>" --no-edit
and thengit rebase --continue
.The text was updated successfully, but these errors were encountered: