根据最近提交时间排列
<% if !@commits.blank? && @type == "2" %> <% @commits.each do |commit| %>
<%= format_date(commit.created_at) %>

<%= link_to commit.author_name, user_path(get_user_by_mail(commit.author_email)), :class => "link-blue" %> 创建于<%= time_tag(commit.created_at) %>前

<%= commit.title %>
<%= link_to truncate(commit.short_id, :length => 20), {:controller => 'repositories', :action => 'commit_diff', :id => @project.id, :changeset => commit.id}, :target => "_blank" %>
<% end %>
<% end %>