Git: How to compare two branches
Task: Compare two different git branches
Solution:
git diff branch1 branch2
Note: compare by specific file type
git diff branch1 branch2 -- '*.java'
Done.
Scientific Algorithms and Analytics
Task: Compare two different git branches
Solution:
git diff branch1 branch2
Note: compare by specific file type
git diff branch1 branch2 -- '*.java'
Done.