System notice: In light of the Debian OpenSSL security issue we've regenerated the server keys. See this thread for instructions and the new key fingerprints.

Commit c0a0a2f0724a2195ae8811ba9fc4b75d28dff837

"Trees" context link renamed to "source tree" under repositories

Commit diff

app/views/repositories/_context_menu.html.erb

 
11<li><%= link_to "Overview", [@project, @repository] -%></li>
22<li><%= link_to "Commits",
33 project_repository_logs_path(@project, @repository) -%></li>
4<li><%= link_to "Trees",
4<li><%= link_to "Source Tree",
55 project_repository_trees_path(@project, @repository) -%></li>
66<li><%= link_to "Comments (#{@repository.comments.count})",
77 project_repository_comments_path(@project, @repository) -%></li>
toggle raw diff

data/hooks/post-receive

 
7272 user = User.find_by_email(hash[:email])
7373 if user.nil?
7474 # TODO: no user should be ok, no need to skip
75 $stdout.puts "** The email '#{hash[:email]}' is not registered."
75 # $stdout.puts "** The email '#{hash[:email]}' is not registered."
7676 next
7777 end
7878
toggle raw diff