this post was submitted on 16 Jun 2026
9 points (84.6% liked)
Explain Like I'm Five
21421 readers
90 users here now
Simplifying Complexity, One Answer at a Time!
Rules
- Be respectful and inclusive.
- No harassment, hate speech, or trolling.
- Engage in constructive discussions.
- Share relevant content.
- Follow guidelines and moderators' instructions.
- Use appropriate language and tone.
- Report violations.
- Foster a continuous learning environment.
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Git is about having a version of whatever project on a file in your computer (the file is called "local repository) and periodically synchronised its content with a remote file called central repository who is accessed potentially by other that you.
The first step is to make sure you have git, the software, on your computer and that you have access to a central repository, here GitHub where you need an account. Have you done that?
I already had git installed in my WSL. Today l downloaded and installed git in my windows 10 as well. I also have a GitHub account.
GitHub desktop takes the learning out of git. You press buttons. It does its thing.
I do have GitHub desktop, but haven't used it yet.
Muuuuch easier than learning git.
So now you need to connect Git (the software on your computer) to GitHub (the internet site that will host the central repository). That is done using the command
And giving it your github credential as mentionned in the Setting Up Git lesson that is link in the lesson you are following.