tags:

views:

39

answers:

2

Hi,

I have two seperate git repositories at ~/linux and ~/android. I want to make a diff of the two repositories using git. Or is there any way to merge the two repositories.?

Regards, Murugaprabu

+1  A: 

git fetch --all $HOME/android in the other directory and then use git diff in the usual way.

jpalecek
+1  A: 

Add both repos as remotes, fetch them and then diff/merge/do whatever you want.

wRAR