GitHub: How to download to my computer the files that I updated inside GitHub?

This must be a very basic question but I can’t find a solution on the internet.

  1. I created a Create-React-App inside my computer

  2. I created a repository on GitHub

  3. I pushed the Create-React-App to my GitHub repository

  4. I changed the Readme.md and other files inside GitHub, with the GitHub editor.

  5. The problem is, these files haven’t changed inside the Create-React-App that is in my computer! How can I do it to update the files that are in my computer, so that they are the same as the ones that there are on GitHub? Is there a git command that allows me to do that?

This is my repo: https://github.com/ArnoldGee/diverteach

I solved it! The git command is git pull origin master. https://stackoverflow.com/questions/1443210/updating-a-local-repository-with-changes-from-a-github-repository

1 Like