Skip to content
Dave Strus edited this page May 25, 2016 · 1 revision

Git

Babun includes Git source code management, which we'll use throughout class.

Configuring Git

Git comes pre-configured. You just need to tell it what name and email address it should use to sign code that you've authored. Enter the following commands, substituting your actual name and email address:

$ git config --global user.name "Your Full Name"
$ git config --global user.email "[email protected]"

GitHub Desktop

GitHub Desktop is a very nice, free graphical interface for Git. Although we'll use Git from the command-line a great deal, we'll also look at how GitHub Desktop can make certain tasks easier.

Clone this wiki locally