public String getCommitMessage(final String commit, final String delim) throws Exception { return CollectionsFormatter.format( runCommand(formatCommand("log", "-1 --pretty=format:%B " + commit), environment), delim); }
public String getCommitCommitterRelativeDate(final String commit) throws Exception { return CollectionsFormatter.format( runCommand(formatCommand("log", "-1 --pretty=format:%cr " + commit), environment), " "); }
public String getCommitMessageSubject(final String commit) throws Exception { return CollectionsFormatter.format( runCommand(formatCommand("log", "-1 --pretty=format:%s " + commit), environment), " "); }
public String getCommitAuthorEmail(final String commit) throws Exception { return CollectionsFormatter.format( runCommand(formatCommand("log", "-1 --pretty=format:%ae " + commit), environment), " "); }