I am on a large revamping project, and I would like to see how a specific interface has changed between the current Git branch and the develop
branch. My ideal operation would be to use some keyword search to look for difference. Using git diff
does not make sense because of the amount of change which has occurred between the two branches. Any ideas how I can do this effectively?
Asked
Active
Viewed 33 times
0

0xTomato
- 108
- 10
-
STRONG SUGGESTION: Download and familiarize yourself with [Tortoise Git](https://tortoisegit.org/download/), if you're not already using it. – paulsm4 Mar 03 '21 at 02:32
-
1How do you want to limit the output of `git diff`? If you want to look at changes to a specific set of files, that's easy to do. How would a keyword search work? – CryptoFool Mar 03 '21 at 02:39
-
Is [that](https://stackoverflow.com/questions/5586383/how-to-diff-one-file-to-an-arbitrary-version-in-git) what you need? – Prihex Mar 03 '21 at 06:57
-
@Prihex More like the entire repo because there are multiple files needed to be compared together at the same time, but that is helpful! Thanks – 0xTomato Mar 04 '21 at 02:25