How to track changes on github after cloning a project locally

the author"s project is not finished yet, so there is new content all the time. Do I have to reclone it every time?

Mar.14,2021

git pull learn about


so that
git branch first check the current workspace branch
git log view the submission history of the current workspace
git pull pulls the remote current branch
so that the local and remote branches are consistent.


after a git clone remote project, the local master branch is actually associated with the remote (origin) master branch by default. You only need to git pull on the local master branch to know the update. You can also push (git push) to the remote master branch through the local master (if you have permission), and you can also establish other branches locally to associate with the remote branch (if you have permission)

Menu