リモートリポジトリがなく、ブランチが2つのローカルリポジトリが1つだけです。git pullの違い。マスターとgitのマージマスター
$ git branch -a
master
* devel
この文脈同じ/同義語のコマンドを次していますか?
$ git pull . master
と
$ git merge master
UPDATE:
$ 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.
このマニュアルページで述べたように、これは便利である理由私は実際に理解していません。
いいえgit-merge - 2つ以上の開発履歴を一緒に結合します。そしてgit-pull - 別のリポジトリまたはローカルブランチからフェッチしてマージする – cptnk