user310291
user310291

Reputation: 38180

How to put 2 sources codes in Git and merge them

Let's say there are a big java web project A from developper A and a big java web project B from developper B. Both are not under git.

To put them under Git and merge them, should I do this :

If no what should I do, if yes is there a better way ?

Upvotes: 0

Views: 33

Answers (1)

Jonathan Holmes
Jonathan Holmes

Reputation: 468

Yes, your process is correct.

Your biggest pain point is going to be that last step - here's the git man page on how to handle merges.

Upvotes: 1

Related Questions