Différence entre git pull. master vs git fusionner maître

Ayant pas de dépôt distant, juste un dépôt local avec deux branches.

$ git branch -a
  master
* devel

Sont les commandes suivantes dans ce contexte le même/synonyme?

$ git pull . master

et

$ git merge master

Mise à JOUR:

$ git help pull donne les informations suivantes

SYNOPSIS
   git pull <options> <repository> <refspec>...

DESCRIPTION
   ...
   Note that you can use . (current directory) as the <repository> to pull
   from the local repository — this is useful when merging local branches
   into the current branch.

En fait, je ne comprends pas pourquoi c'est utile comme indiqué dans ce manuel.

source d'informationauteur Hotschke