-3

I am confused about how it works,

I'm new to git hub, I was just wondering when someone makes a change, how will it go about updating it, etc. Do I have to clone after every change?

matt
  • 515,959
  • 87
  • 875
  • 1,141
  • 1
    No. You need to read the documentation or perhaps some high-level guides and check the `git pull` command https://git-scm.com/docs/git-pull – bahrep Nov 22 '22 at 01:04
  • 1
    https://www.biteinteractive.com/picturing-git-conceptions-and-misconceptions/ – matt Nov 22 '22 at 01:06
  • 1
    The following thread has answers to your question: [Updating a local repository with changes from a GitHub repository](https://stackoverflow.com/questions/1443210/updating-a-local-repository-with-changes-from-a-github-repository) – bahrep Nov 22 '22 at 01:15
  • I think you need to learn some of the basics of git: https://learngitbranching.js.org/ – Kim Nov 22 '22 at 09:23

1 Answers1

1

you can :

git pull

inside the folder to get the updates

WillX0r
  • 53
  • 6