Package com.gitblit.utils.JGitUtils

Examples of com.gitblit.utils.JGitUtils.MergeResult


    try {
      oldRef = getRepository().getRef(ticket.mergeTo);
    } catch (IOException e) {
      LOGGER.error("failed to get ref for " + ticket.mergeTo, e);
    }
    MergeResult mergeResult = JGitUtils.merge(
        getRepository(),
        patchset.tip,
        ticket.mergeTo,
        committer,
        message);
View Full Code Here


    try {
      oldRef = getRepository().getRef(ticket.mergeTo);
    } catch (IOException e) {
      LOGGER.error("failed to get ref for " + ticket.mergeTo, e);
    }
    MergeResult mergeResult = JGitUtils.merge(
        getRepository(),
        patchset.tip,
        ticket.mergeTo,
        committer,
        message);
View Full Code Here

TOP

Related Classes of com.gitblit.utils.JGitUtils.MergeResult

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.