I'm trying to explain my issue. I'd like to merge a local (not under git versioning) project with the changes in its master git branch.
In other words, I did some local modifications to a project (but I did not use git). Meanwhile some modifications were added to the master branch. Now, I'd like to update my local version of the project doing a "merge" between my local version and the one in the git repository.
What I've tried:
- I've created a branch of the master;
- I've copied my modifications on the new branch;
- I've tried to merge the master on the new created branch (and obviously it doesn't work)
If I use git-diff between new branch and master I see all differences. I'd like to have a branch with such difference, in which I resolve conflicts caused by the differences.
Any suggestion to solve my issue?