so my issue is a difference between the expected committer and the actual committer.
When I try to push, it will say:
Expected committer name "XXXXXX" but found "YYYYYY". Expected committer name "XXXXXX's email" but found "YYYYYY's email".
My name and email are the ones git "found", I do not know why it's expecting somebody else to do the commit/push.
My git config --list | grep user will display the correct information "YYYYYY" and "YYYYYY's email".
I have tried pushing with **--amend --reset-author**
or **--amend --author="YYYYYY <YYYYYY's email>"**
and even **--allow-empty**
but it always ends with the same result, I cannot do the push unless I edit my global configs and say that I'm another user which would be false.
Any ideas on how to solve this?