ZANARDI Bruno

Software Developper

About
Resume

Git Blog

Git command `pull`

Definition

Fetch from and integrate with another repository or a local branch.

Basic usage

Download and merge datas from remote

$ git pull

Download and securely merge datas from remote

$ git pull --rebase=prevent

or with config:

$ git config --global pull.rebase prevent
$ git pull