0

我尝试合并两个分支 - master(当前)和 UrlHandlePoint(非活动):

$ git merge UrlHandlerPoint

我建议这将是冲突的原因,因为这里的代码有一个明显的区别(它从同一行 #27 开始):

掌握:

.27    public function actionIndex()
    {
        // renders the view file 'protected/views/site/index.php'
        // using the default layout 'protected/views/layouts/main.php'
        $about="Page content \"About\"";
        $this->render('index', array('res'=>$about));
    }

网址处理程序点:

.27    public function actionIndex($alias=false)
    {
        $data=Data::getDataByAlias('o_kompanii',$alias);
        $this->render('index', array('res' => $data));
    }

但是,git 不会出现冲突问题,而是采用 master 分支的版本。有人知道为什么吗?和/或我在这里理解错了什么?

4

1 回答 1

2

好吧,既然你不回答评论,我会试着继续猜测。;-)

差异不是冲突。我的猜测是该文件仅在master分支中进行了更改,因此,正在合并的分支上没有冲突的更改。

于 2012-10-02T14:24:08.523 回答