Вопрос

Я использую объективную 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);
        }
    }
}
.

Это было полезно?

Решение

Индекс, который возвращается путем объединения деревьев, не связан с репозиторием.К сожалению, операция для записи индекса в качестве дерева на определенный репозиторий (git_index_write_tree_to) еще не выставлен с помощью объективного git.

Вы, вероятно, хотите открыть билет в их выпуск трекер .

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top