Update 1-getting-started-lessons/2-github-basics/README.md

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
pull/1360/head
Lee Stott 5 months ago committed by GitHub
parent 29bfa87cda
commit 585e8e2a08
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -146,7 +146,7 @@ Let's say you have a folder locally with some code project and you want to start
git push -u origin main
```
This sends your commits in your "main" branch to GitHub. Setting the `upstream` branch including `-u` in the command establishes a link between your local branch and the remote branch, so you can simply use git push or git pull without specifying the branch name in the future. Git will automatically use the upstream branch and ou you won't need to specify the branch name explicitly in future commands.
This sends your commits in your "main" branch to GitHub. Setting the `upstream` branch including `-u` in the command establishes a link between your local branch and the remote branch, so you can simply use git push or git pull without specifying the branch name in the future. Git will automatically use the upstream branch and you won't need to specify the branch name explicitly in future commands.
2. **To add more changes**. If you want to continue making changes and pushing them to GitHub youll just need to use the following three commands:

Loading…
Cancel
Save