请问下
git merge 的默认行为是什么呢,后面不加分支
是 git merge origin/current_branch 吗
用 fetch + merge 感觉是这样的
一直没查到这个。。。
1
flniu 2017-03-16 12:08:50 +08:00
git help merge
"If no commit is given from the command line, merge the remote-tracking branches that the current branch is configured to use as its upstream. See also the configuration section of this manual page." |
3
blackywkl 2017-03-16 20:20:39 +08:00
直接 git merge 不加任何参数的话,会将当前分支的上游分支合并进来的
|