0
I have a situation where we use a system that the code is open source, but we made some modifications to fit our need.
Now the original system has undergone code changes to improve security, I’m looking at their commits and implementing the changes in our system.
Is there a tool, maybe even in git itself, where I could make a comparison, that in case I took the code of the day I gave Fork in their code, my current code and their current code and made a comparison, sort of returning a union code of my and theirs changes?
Not in this magical way, but git merge can be used to make a semi-automatic merge for you between different branches.
– Giuliana Bezerra
You actually created a Fork from the original repository and started uploading the changes to Fork? Or just downloaded the source code and started using it in the project (without creating your own Fork on github)? Just to be sure...
– Alisson
I created a Fork of the original code, and then made my own commits in mine
– Mateus
I find nothing so magical, it would be a tool that would go through and isolate all the differences of the two codes in relation to the original and then indicate everything in a single, indicating areas of conflict and indicating which is which
– Mateus
Something I think I’ve even seen something in some article or report around, but I can’t remember where
– Mateus