1

Objective-Git を使用しています。次の方法が機能しません。

- (GTIndex *)merge:(GTTree *)otherTree ancestor:(GTTree *)ancestorTree error:(NSError **)error

エラーは返されませんが、返されたインデックスは空です。インデックスが存在していても、すべての属性は nil です。マージ操作は行われません。マージを試みた結果のインデックスを取得できないため、ツリーを書き出すことができません。

目的の git を使用してマージを成功させた人はいますか? ヘルプ!

        GTBranch *branch1 = branches[0];
        GTCommit *commit1 = [branch1 targetCommitAndReturnError:NULL];
        GTOID *oid1 =  commit1.OID;
        GTTree *tree1 = commit1.tree;

        GTBranch *branch2 = branches[1];
        GTCommit *commit2 = [branch2 targetCommitAndReturnError:NULL];
        GTTree *tree2 = commit2.tree;
        GTOID *oid2 =  commit2.OID;

        GTRepository *repo = branch1.repository;

        NSError *error;
        GTCommit *ancestor = [repo mergeBaseBetweenFirstOID:oid1 secondOID:oid2 error:&error];
        if (error){
            NSLog(@"%@", error.description);
        }
        GTTree *ancTree = ancestor.tree;
        NSError *someError;
        NSLog(@"attempting merge into ""%@"" from ""%@"" with ancestor ""%@""", commit2.message, commit1.message,ancestor.message);
        GTIndex *mergedIndex = [tree2 merge:tree1 ancestor: ancTree error:&someError];  //returns index not backed by existing repo --> index_file_path = nil,  all attributes of git_index are nil
        if (someError){
            NSLog(@"%@", someError.description);
        }
        NSError *theError;
        GTTree *mergedtree = [mergedIndex writeTree:&theError]; //can't write out the tree as the index given back by merge: ancestor: error: does not reference a repo
        if (theError){
            NSLog(@"%@",theError);
        }
    }
}
4

1 に答える 1

5

ツリーをマージして返されるインデックスは、リポジトリにバインドされません。残念ながら、インデックスをツリーとして特定のリポジトリに書き込む操作 ( git_index_write_tree_to) は、Objective-Git を通じてまだ公開されていません。

問題トラッカーでチケットを開きたいと思うでしょう。

于 2014-01-08T20:53:34.233 に答える