Package com.gitblit.transport.git

Examples of com.gitblit.transport.git.GitDaemon


  protected void configureGitDaemon() {
    int port = settings.getInteger(Keys.git.daemonPort, 0);
    String bindInterface = settings.getString(Keys.git.daemonBindInterface, "localhost");
    if (port > 0) {
      try {
        gitDaemon = new GitDaemon(gitblit);
        gitDaemon.start();
      } catch (IOException e) {
        gitDaemon = null;
        logger.error(MessageFormat.format("Failed to start Git Daemon on {0}:{1,number,0}", bindInterface, port), e);
      }
View Full Code Here


  protected void configureGitDaemon() {
    int port = settings.getInteger(Keys.git.daemonPort, 0);
    String bindInterface = settings.getString(Keys.git.daemonBindInterface, "localhost");
    if (port > 0) {
      try {
        gitDaemon = new GitDaemon(gitblit);
        gitDaemon.start();
      } catch (IOException e) {
        gitDaemon = null;
        logger.error(MessageFormat.format("Failed to start Git Daemon on {0}:{1,number,0}", bindInterface, port), e);
      }
View Full Code Here

TOP

Related Classes of com.gitblit.transport.git.GitDaemon

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.