我尝试合并两个分支 - 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 分支的版本。有人知道为什么吗?和/或我在这里理解错了什么?