How to Set Up Git, Git LFS, and GitHub Desktop

1. Install Git

2. Verify Git Installation

  • Open a Command Prompt (or Terminal on Mac).

  • Type the following command and press Enter:

git
  • If Git is installed correctly, you'll see a list of Git commands.

3. Install Git LFS (Large File Storage)

4. Initialize Git LFS

  • Open a Command Prompt (or Terminal) and run the following command:

git lfs install
  • If successful, you should see the message:

Git LFS initialized.

5. Install GitHub Desktop

6. Sign In to Your GitHub Account

  • In GitHub Desktop, go to the top menu and select File > Options > Accounts.

  • Log in with your GitHub account credentials.

Last updated