<%= render :icon, icon: commit.icon, kind: commit.kind %> <%= commit.subject %>
<%= render :avatar, name: commit.author.name, url: commit.avatar_url(commit.author) %>
<%= commit.files_changed %> <%= commit.total_deletions %> / <%= commit.total_insertions %> <%= commit.issue.id %> <%= commit.review.id %>
<%= commit.tag %>

Message

<%= commit.safe_body %>
<% unless commit.notes.empty? %>

Notes

<%= commit.notes.html_safe %>
<% end %>

Info

Author

<%= render :avatar, name: commit.author.name, url: commit.avatar_url(commit.author) %> <%= render :profile, name: commit.author.name, url: commit.profile_url(commit.author) %>

<% if commit.collaborators.any? %>

Collaborators

<% commit.collaborators.each do |collaborator| %>

<%= render :avatar, name: collaborator.name, url: commit.avatar_url(collaborator) %> <%= render :profile, name: collaborator.name, url: commit.profile_url(collaborator) %>

<% end %> <% end %> <% if commit.signers.any? %>

Signers

<% commit.signers.each do |signer| %>

<%= render :avatar, name: signer.name, url: commit.avatar_url(signer) %> <%= render :profile, name: signer.name, url: commit.profile_url(signer) %>

<% end %> <% end %>

Signature

<%= commit.signature %>

Created