File tree 1 file changed +29
-5
lines changed
1 file changed +29
-5
lines changed Original file line number Diff line number Diff line change @@ -63,28 +63,52 @@ sub BUILD {
63
63
$self -> comment( decode($encoding , join " \n " , @lines ) );
64
64
}
65
65
66
+ =head1 METHODS
67
+
68
+ =head2 tree
69
+
70
+ Returns the L<< C<::Tree> |Git::PurePerl::Object::Tree >> associated with this commit.
71
+
72
+ =cut
66
73
67
74
sub tree {
68
75
my $self = shift ;
69
76
return $self -> git-> get_object( $self -> tree_sha1 );
70
77
}
71
78
72
-
73
79
sub _push_parent_sha1 {
74
80
my ($self , $sha1 ) = @_ ;
75
81
76
82
push (@{$self -> parent_sha1s}, $sha1 );
77
83
}
78
84
85
+ =head2 parent_sha1
86
+
87
+ Returns the C<sha1 > for the first parent of this this commit.
88
+
89
+ =cut
90
+
79
91
sub parent_sha1 {
80
92
return shift -> parent_sha1s-> [0];
81
93
}
82
-
94
+
95
+ =head2 parent
96
+
97
+ Returns the L<< C<::Commit> |Git::PurePerl::Object::Commit >> for this commits first parent.
98
+
99
+ =cut
100
+
83
101
sub parent {
84
102
my $self = shift ;
85
103
return $self -> git-> get_object( $self -> parent_sha1 );
86
104
}
87
105
106
+ =head2 parents
107
+
108
+ Returns L<< C<::Commit> s|Git::PurePerl::Object::Commit >> for all this commits parents.
109
+
110
+ =cut
111
+
88
112
sub parents {
89
113
my $self = shift ;
90
114
@@ -95,9 +119,9 @@ sub parents {
95
119
96
120
Traverses up the parentage of the object graph to find out if the given C<sha1 > appears as an ancestor.
97
121
98
- if ( $commit_object->has_ancestor_sha1( 'deadbeef' x 5 ) ) {
99
- ...
100
- }
122
+ if ( $commit_object->has_ancestor_sha1( 'deadbeef' x 5 ) ) {
123
+ ...
124
+ }
101
125
102
126
=cut
103
127
You can’t perform that action at this time.
0 commit comments