I was going to push my commits, but some error appeared and I'm lucky, bc as it shows I was going to push to the same commits (I think). I'm afraid that I'll broke something by pushing to double commits.
Why? Look at this:
[john@pc]$ git push
// useless stuff
Delta compression using up to 4 threads.
Compressing objects: 100% (18/18), done.
Writing objects: 100% (18/18), 2.63 KiB | 0 bytes/s, done.
Total 18 (delta 14), reused 0 (delta 0)
// here it goes
remote: Audit failure - Commit 3876b44 - Non-full name: johngitacc
remote: Audit failure - Commit 3876b44 - Non-full name: johngitacc
remote: Audit failure - Commit 6757f52 - Non-full name: johngitacc
remote: Audit failure - Commit 6757f52 - Non-full name: johngitacc
Why there 2x2 same commits: two of 3876b44 and two of 6757f52?
Can it be caused by the reason these commits was created in different local branches and then they were cherry-picked from that branches? AFAIK, no, bc I deleted these branches after cherry-picking, but "double-titles" still there. What can be the reason? Am I going to push the same commits?
P.S. I shortened the SHA-1s of commits for readability.
UPD.:
I ran git config user.name "John Pushandpop"
command. Then git push
and got the same output, but a little bit changed those 4 lines:
remote: Audit failure - Commit 3876b44 - Non-full name: John
remote: Audit failure - Commit 3876b44 - Non-full name: johngitacc
remote: Audit failure - Commit 6757f52 - Non-full name: John
remote: Audit failure - Commit 6757f52 - Non-full name: johngitacc