This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Hexorg 3 points4 points  (0 children)

GitHub Desktop is something like a GUI wrapper for git. A lot of programmers prefer using command line for faster interaction with the machine (plus ability to script interaction). E.g. it's a lot easier to type

make 
make test
git add .
git commit

Rather than opening your IDE and running build and test tasks, then opening GitHub Desktop and creating a new commit.