|
|
|
|
|
by shane_kerns
848 days ago
|
|
I believe that even git would work in this scenario because a.txt and b.txt are separate and independent thus a rebase in git is not required.
The point at which this becomes an issue is when both person A and B try to make changes to the same file and specifically the same blob of text within that file.
I could be wrong but this should be simple enough to prove out because I've run into this situation before where I forgot to rebase before pushing my changes but git still accepted the changes as they were independent of the changes that person B made. |
|
The solution would be to pull upstream changes (so you know what you are potentially pushing your changes into) and then push.