class Git::CommitsController < Git::BaseController def index @branch_name = (params[:branch] ? params[:branch] : "master") @path = params[:path] if @path.present? @commits = @git_repository.repo.log(@branch_name, @path) @render_paginate = false else @commits, @page, @last_page = @git_repository.paginate_commits(@branch_name, :page => params[:page]) @render_paginate = true end end def show @commit = @git_repository.commit(params[:id]) # @git_repository.commits(params[:id]).first respond_to do |format| format.html format.diff { render :text => (@commit.diffs.map{|d| d.diff}.join("\n") rescue ''), :content_type => "text/plain" } format.patch { render :text => (@commit.to_patch rescue ''), :content_type => "text/plain" } end end end