各位前輩好
撰寫同一份檔案,每天都會 git push 提交到 github 上,
原本都會顯示 “提交者帳號 committed 5 days ago”,
而現在變成 “作者 authored and 作者 committed 31 minutes ago
e94e40b ”
爬了網上許多相關的文,依舊還是不懂該如何去解決這項問題,麻煩各位前輩指教!
謝謝各位前輩!!
[解決方式]
1 重新建一個新repository,再從中試著commit時,就有記錄到對的帳號了。這時再回去其他舊的repositorys時,也可以記錄到原本的帳號了。
2 第一點試過成功後,我也有使用樓下前輩建議的command line重新設置
非常謝謝各位前輩的幫助!
git config user.email
git config user.name
確認你的信箱現在用哪個
如果你發現它們不是你預期的帳號,可以使用以下 Git 命令來更改它們:
git config --global user.email "your-email@example.com"
git config --global user.name "Your Name"