Back to Map
💡
GitHub Desktop provides a user-friendly graphical interface for Git operations. It's perfect if you prefer clicking buttons over typing commands! Make sure you've created your GitHub profile

📥 Installation & Setup

1

Download GitHub Desktop

Visit desktop.github.com and download the installer for your operating system.

🍎
GitHub Desktop is available for both Windows and macOS. The installation process is similar on both platforms.
2

Sign In

Launch the app and sign in with your GitHub browser account.

  • Click "Sign in to GitHub.com"
  • A browser window will open for authentication
  • Authorize GitHub Desktop to access your account
3

Configure Git

The app will ask for a name and email.

⚠️
Important: Use the same email address associated with your GitHub account to ensure your contributions are attributed correctly. This email will appear in your commit history.

🎯 What You Can Do with GitHub Desktop

Clone Repositories
Download any repository from GitHub to your local machine with just a few clicks.
View Changes
See exactly what files you've modified with a visual diff viewer.
Commit & Push
Stage your changes, write commit messages, and push to GitHub without touching the command line.
Branch Management
Create, switch, and merge branches with an intuitive interface.

🔗 Connecting to VS Code

GitHub Desktop works seamlessly with VS Code, the IDE you will be setting up in Section 4 (IDE Set-up). After cloning a repository:

  1. Right-click on the repository in GitHub Desktop
  2. Select "Open in Visual Studio Code"
  3. Start editing your files!

Any changes you make will automatically appear in GitHub Desktop for committing.

✨ Ready to Continue?

GitHub Desktop is now set up! You'll use it alongside VS Code in the "Updating a Repository" section later.

Back to Map