Class GHCommit

    • Constructor Detail

      • GHCommit

        public GHCommit()
        Creates an instance of GHCommit.
    • Method Detail

      • getOwner

        public GHRepository getOwner()
        Gets owner.
        Returns:
        the repository that contains the commit.
      • getLinesChanged

        public int getLinesChanged()
                            throws IOException
        Gets lines changed.
        Returns:
        the number of lines added + removed.
        Throws:
        IOException - if the field was not populated and refresh fails
      • getLinesAdded

        public int getLinesAdded()
                          throws IOException
        Gets lines added.
        Returns:
        Number of lines added.
        Throws:
        IOException - if the field was not populated and refresh fails
      • getLinesDeleted

        public int getLinesDeleted()
                            throws IOException
        Gets lines deleted.
        Returns:
        Number of lines removed.
        Throws:
        IOException - if the field was not populated and refresh fails
      • getTree

        public GHTree getTree()
                       throws IOException
        Use this method to walk the tree.
        Returns:
        a GHTree to walk
        Throws:
        IOException - on error
      • getHtmlUrl

        public URL getHtmlUrl()
        Gets html url.
        Returns:
        URL of this commit like "https://github.com/kohsuke/sandbox-ant/commit/8ae38db0ea5837313ab5f39d43a6f73de3bd9000"
      • getSHA1

        public String getSHA1()
        Gets sha 1.
        Returns:
        [0 -9a-f]{40} SHA1 checksum.
      • getUrl

        public URL getUrl()
        Gets url.
        Returns:
        API URL of this object.
      • getParentSHA1s

        public List<String> getParentSHA1s()
        Gets parent sha 1 s.
        Returns:
        SHA1 of parent commit objects.
      • getParents

        public List<GHCommit> getParents()
                                  throws IOException
        Resolves the parent commit objects and return them.
        Returns:
        parent commit objects
        Throws:
        IOException - on error
      • getAuthoredDate

        public Date getAuthoredDate()
                             throws IOException
        Gets the date the change was authored on.
        Returns:
        the date the change was authored on.
        Throws:
        IOException - if the information was not already fetched and an attempt at fetching the information failed.
      • getCommitter

        public GHUser getCommitter()
                            throws IOException
        Gets committer.
        Returns:
        the committer
        Throws:
        IOException - the io exception
      • getCommitDate

        public Date getCommitDate()
                           throws IOException
        Gets the date the change was committed on.
        Returns:
        the date the change was committed on.
        Throws:
        IOException - if the information was not already fetched and an attempt at fetching the information failed.
      • createComment

        public GHCommitComment createComment​(String body,
                                             String path,
                                             Integer line,
                                             Integer position)
                                      throws IOException
        Creates a commit comment.

        I'm not sure how path/line/position parameters interact with each other.

        Parameters:
        body - body of the comment
        path - path of file being commented on
        line - target line for comment
        position - position on line
        Returns:
        created GHCommitComment
        Throws:
        IOException - if comment is not created
      • createComment

        public GHCommitComment createComment​(String body)
                                      throws IOException
        Create comment gh commit comment.
        Parameters:
        body - the body
        Returns:
        the gh commit comment
        Throws:
        IOException - the io exception
      • getLastStatus

        public GHCommitStatus getLastStatus()
                                     throws IOException
        Gets last status.
        Returns:
        the last status of this commit, which is what gets shown in the UI.
        Throws:
        IOException - on error