After pulling changes committed and pushed by other developers by git pull, do I need to run git checkout or something else to get my local working copy “fully synchronized” with the latest version of all files?
After pulling changes committed and pushed by other developers by git pull , do
Share
No.
git pullperforms both agit fetch— which updates your local repository with changes from the remote repository — andgit merge, which updates your local working copy (the checked out files).After a
git pulloperation, your working copy should be fully synchronized, barring any local modifications you have made.