# git fetch vs git pull

Remote
Local

# git fetch

$ git checkout feat/a
$ git fetch
1
2
Remote
Local

# git pull

$ git checkout feat/a
$ git pull origin main
1
2
Remote
Local

# git pull --rebase

$ git checkout feat/a
$ git pull --rebase origin main
1
2
Remote
Local
Dernière mise à jour: 4/6/2022, 8:36:36 PM