Lines Matching refs:notes
169 my $note = $log->notes;
201 $self->git->notes('edit', '-F', "$tempfh", $id);
242 @list = grep { ! $_->notes } @commits;
258 my @delta = split "\n", ($log->notes || '');
266 my $note = $log->notes or return '';
273 my $note = $log->notes or return '';
349 return unless my $notes = $log->notes;
350 say $lf ? "\n$notes" : $notes;
406 my $note = $log->notes;
414 my $old_note = $log->notes;
804 sub notes {
806 my @notes = eval { Git::Wrapper->new(".")->notes('show', $self->id) };
807 pop @notes while @notes && $notes[-1] =~ m{^\s*$};
808 return unless @notes;
809 return join ("\n", @notes);