I do everything in iTerm or Terminal. Haven't even tried seeking out an accessible app since all the commands are just right there in the command line already for what I use it for.
When comparing two branches in git use git format-patch. You will get patch files for each commit that is on one branch but not the other. Reading patch files isn't efficient at first but you get better at it with time.
Comments
All command line
I do everything in iTerm or Terminal. Haven't even tried seeking out an accessible app since all the commands are just right there in the command line already for what I use it for.
Diffs
What about diffs? Not sure what the best way to deal with these are.
git format-patch for diffs.
When comparing two branches in git use git format-patch. You will get patch files for each commit that is on one branch but not the other. Reading patch files isn't efficient at first but you get better at it with time.