Skip to main content

Setup Git and GitHub

How to Create a GitHub Account with Your FortisureIT Email

Visit the GitHub Website

  1. Open your web browser and go to GitHub's website.

Start the Sign-Up Process

  1. On the GitHub homepage, click on the "Sign up" button located at the top right corner.

Enter Your Email Address

  1. In the "Create your account" page, enter your FortisureIT email address in the email field.
  2. Click "Continue".

Create a Password

  1. Choose a strong password for your account.
  2. Click "Continue".

Choose a Username

  1. Enter a unique username. This will be the name that appears on your GitHub profile.
  2. Click "Continue".

Complete Email Verification

  1. Check your FortisureIT email inbox for a verification email from GitHub.
  2. Open the email and click on the "Verify Email Address" link.

Additional Tips

  • Keep your account secure: Enable two-factor authentication (2FA) for added security *
  • Set up your profile: Add a profile picture, bio, and any other information that represents you professionally.
  • Learn GitHub Basics: Explore repositories, create new repositories, and get familiar with pull requests, issues, and branches.

Feel free to reach out if you have any questions or run into issues!

How to Download and Install Git

Download Git

  1. You can download Git installer here.
  2. Click on the "Download for Windows" button to download the installer.
  3. Select the 64-bit version and the installer will start downloading.

Click here to view the download steps.

Install Git

  1. Run the downloaded installer.
  2. Follow the installation steps and choose the recommended settings.

Click here to view all of the recommended settings when running the Git installer.

Step 1

Step 2

Step 3

Step 4

Step 5

Step 6

Step 7

Step 8

Step 9

Step 10

Step 11

Step 12

Step 13

Step 14

Step 15

How to Configure Git

  1. Once you have Git installed, open the Git Bash terminal. You can find it by searching for "Git Bash" in the Windows search bar. should look like this:
  1. We now need to connect our Git installation to our GitHub account. To do this, we need to set up our name and email in Git. Run the following commands in the Git Bash terminal:

    tip

    Replace username with your GitHub username you created earlier and the email associated with your GitHub account. Should be your FortisureIT email

    git config --global user.name "username"
    git config --global user.email "email@fortisureit.com"
  2. Verify that your name and email are set correctly by running the following command:

    git config --global --list

    You should see your username and email in the output.

Additional Tips

  • Learn Basic Git Commands: Take some time to learn essential Git commands like git pull, git branch, git merge, git log, etc.
  • Use a Git GUI Client: If you prefer a graphical interface, you can use tools like GitHub Desktop, SourceTree, or GitKraken.
  • Explore GitHub Features: Familiarize yourself with GitHub features like pull requests, issues, project boards, and GitHub Actions.