Git Client

By Rich B, 2 March, 2019

Forum
App Development and Programming

Any recommendations for an accessible git client? Or do people mostly use the command line?

Options

Comments

By Marconius on Saturday, March 23, 2019 - 02:26

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.

By Rich B on Saturday, March 23, 2019 - 02:26

What about diffs? Not sure what the best way to deal with these are.

By Jared on Saturday, March 23, 2019 - 02:26

In reply to by Rich B

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.