...

/

Git Pull

Git Pull

This lesson discusses the git pull command and how you can make use of it.

We'll cover the following...

The git pull command

Similar to git fetch, the git pull command also downloads the latest updates from the remote repository. In many ways, it does what git fetch also does but with the added function of merging the newly downloaded remote repository with the latest commits into the local version of the branch.

Let’s say you’ve been working on creating a new feature for your project on a branch with another team member. Both ...