没有远程存储库,只有一个带有两个分支的本地存储库。
$ 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.
我实际上不明白为什么这个手册页中提到这很有用。