-1

So basically I'm using software from GitHub that I cloned a few days ago. Didn't do anything else. Just cloned it. So I was wondering how I could update the clone since a new version of the code has been released. Thank you!

TheMartian32
  • 9
  • 1
  • 8

1 Answers1

0

The command git pull is what you're looking for. It fetches changes from the repository on GitHub, called the remote, and merges them in to your local branch.

Oliver Dunk
  • 484
  • 5
  • 12