https://kotlinlang.org logo
t

tapchicoma

03/26/2020, 11:01 AM
Not sure to whom it will be interesting, but you could use IDEA diff to see diff in files between branches without loading the whole project into IDEA:
Copy code
git show origin/master:path/to/file > /tmp/master_file && idea diff /tmp/master_file path/to/file
👍 2
m

Marc Reichelt

03/26/2020, 11:02 AM
Nice - I’ll try to remember that - that’s really cool 🙂
t

tapchicoma

03/26/2020, 11:05 AM
probably you could create shell alias that will invoke something like this:
idea-diff origin/master path/to/file
2 Views