linux - Set up Git incorrectly and committed to Github -
i've made typo when setting git. used incorrect setup commit github. latter, realized github not recording commits (not showing profile picture on commit , of course didn't count these commits) question is, there way tell fix issue? github knows committed me?.
github matches commit author email, ensure that:
- your email added github profile
- your email set in local git config
if want change author email exiting commits, follow this instruction.
(you can use git commit --amend
single commit or git filter-branch
multiple commits. see details in this question.)
Comments
Post a Comment