class Git::CommitData
- Git::CommitData
- Reference
- Object
Defined in:
git/commit.crConstructors
Instance Method Summary
- #author : Signature | Nil
- #committer : Signature | Nil
- #message : String
- #parent_count
- #parents : Array(Commit)
- #tree : Tree
- #update_ref : String | Nil
Constructor Detail
def self.new(message : String, parents : Array(Commit), tree : Tree, committer : Signature | Nil, author : Signature | Nil, update_ref : String | Nil = nil)
#