git fetch // git fetch will download all the recent changes, but it will not put it in your current checked out code (working area). git checkout origin/master -- path/to/file //git checkout origin/master -- path/to/file will checkout the particular file from the the downloaded changes (origin/master).