Package org.apache.maven.scm.provider.git.command.info

Examples of org.apache.maven.scm.provider.git.command.info.GitInfoScmResult


      // git-status returns non-zero if nothing to do
      getLogger().info("Not a git revision");
      return null;
    }

    return new GitInfoScmResult(cl.toString(), null, stdin.getCommandOutput(), true);
  }
View Full Code Here


      String error = stderr.getOutput();
      getLogger().error("Error find git branch name. Output: " + error);    
      return null;
    }

    return new GitInfoScmResult(cl.toString(), null, stdin.getCommandOutput(),
        true);
  }
View Full Code Here

TOP

Related Classes of org.apache.maven.scm.provider.git.command.info.GitInfoScmResult

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.