Setting Up Git#

Installing Git#

Depending on your platform, use the following to install Git:

Debian / Ubuntu

Run sudo apt-get install git-core

Fedora

Run sudo yum install git-core

Windows (WSL)

We strongly recommend to install the package using the Linux distribution’s package manager. Native Windows installations of Git may also work, but there are possible pitfalls.

macOS

Install the Xcode Command Line Tools.

Some further resources for installation help are:

Configuring Git#

Assuming your name alice and email address alice@wonderland.com,

[alice@localhost ~]$ git config --global user.name "Alice Adventure"
[alice@localhost ~]$ git config --global user.email [email protected]

This will write the settings into your Git configuration file ~/.gitconfig with your name and email:

[user]
    name = Alice Adventure
    email = [email protected]

Of course, replace Alice Adventure and alice@wonderland.com with your actual name and email address.

This is the basic Git configuration for now. For further tips on configuring Git, see Configuration tips.