0

2つのブランチ(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));
    }

UrlHandlerPoint:

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

しかし、競合の問題の代わりに、gitはマスターブランチのバージョンを取得します。誰かが理由を知っていますか?および/または私がここで間違っていると理解していることは?

4

1 に答える 1

2

コメントに返信しないので、推測してみます。;-)

違いは対立ではありません。私の推測では、ファイルはブランチでのみ変更されているmasterため、マージされるブランチに競合する変更はありません。

于 2012-10-02T14:24:08.523 に答える