リモート リポジトリはなく、2 つのブランチを持つローカル リポジトリは 1 つだけです。
$ git branch -a
master
* devel
このコンテキストの次のコマンドは同じ/同義語ですか?
$ git pull . master
と
$ git merge master
アップデート:
$ git help pull
次の情報を提供します
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.
このマンページに記載されているように、なぜこれが役立つのか、実際にはわかりません。