Newbie here. In my private Repository (only user) I am trying to change the author name and email from previous commits (I had a generic email address configured in GIT, therefore Github is not crediting me the contributions in the calendar).
After some reading, and in order to try with just some commits, I was using
git rebase --interactive HEAD~<commit number>
I changed the author name and email in the Text editor by doing
exec git commit --amend --author="newName <newEmail>" -C HEAD
under the commits I wanted to modify, and saved.
After that, I tried git --rebase continue
and got this :
src/App.js: needs merge src/components/Navbar.js: needs merge src/components/auth/Login.js: needs merge You must edit all merge conflicts and then mark them as resolved using git add.
Now I have unmerged paths, and I really don't know how I should proceed in order to solve the merge conflict.
There is just one main
branch - git status
right now is like this:
interactive rebase in progress; onto 1f3deaf
Last commands done (10 commands done):
pick 930c285 themecontext added
pick b454a88 login/register added
(see more in file .git/rebase-merge/done)
No commands remaining.
You have unmerged paths.
(fix conflicts and run "git commit")
(use "git merge --abort" to abort the merge)
Unmerged paths:
(use "git add <file>..." to mark resolution)
both modified: src/App.js
both added: src/components/Navbar.js
both added: src/components/auth/Login.js
no changes added to commit (use "git add" and/or "git commit -a")
Any idea on how I should proceed?