We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef0abb0 commit 477b1caCopy full SHA for 477b1ca
lib/Git/PurePerl/Object/Commit.pm
@@ -19,11 +19,13 @@ has 'committed_time' => ( is => 'rw', isa => 'DateTime', required => 0 );
19
has 'comment' => ( is => 'rw', isa => 'Str', required => 0 );
20
has 'encoding' => ( is => 'rw', isa => 'Str', required => 0 );
21
has 'gpg_signature' => ( is => 'rw', isa => 'Str', required => 0 );
22
+has 'merge_tag' => ( is => 'rw', isa => 'Str', required => 0 );
23
24
my %method_map = (
- 'tree' => [ 'tree_sha1', '-' ], # single line, single value
25
- 'parent' => [ 'parent_sha1s', '@' ], # multiple lines, multiple values
26
- 'gpgsig' => [ 'gpg_signature', '=' ], # multiple lines, single value
+ 'tree' => [ 'tree_sha1', '-' ], # single line, single value
+ 'parent' => [ 'parent_sha1s', '@' ], # multiple lines, multiple values
27
+ 'gpgsig' => [ 'gpg_signature', '=' ], # multiple lines, single value
28
+ 'mergetag' => [ 'merge_tag', '=' ],
29
);
30
31
my %time_attr = (
0 commit comments