2013-08-01 10:33:49 +08:00
|
|
|
|
<%= call_hook(:view_repositories_show_contextual, { :repository => @repository, :project => @project }) %>
|
|
|
|
|
|
2013-08-03 22:18:30 +08:00
|
|
|
|
<div class="contextual" style="padding-right: 10px;">
|
2013-08-01 10:33:49 +08:00
|
|
|
|
<%= render :partial => 'navigation' %>
|
|
|
|
|
</div>
|
2013-08-03 22:18:30 +08:00
|
|
|
|
<h3>
|
|
|
|
|
<%= render :partial => 'breadcrumbs',
|
|
|
|
|
:locals => { :path => @path, :kind => 'dir', :revision => @rev } %>
|
2013-12-11 07:56:42 +08:00
|
|
|
|
<div style="font-size:15px;">
|
2013-08-16 22:43:44 +08:00
|
|
|
|
<%if @repository.type.to_s=="Repository::Git"%>
|
2013-12-10 20:18:21 +08:00
|
|
|
|
<%= @repos_url%>
|
2013-08-16 22:43:44 +08:00
|
|
|
|
<%else %>
|
|
|
|
|
<td><%=h @repository.url %></td>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
2013-08-14 22:03:36 +08:00
|
|
|
|
<p style=" word-wrap: break-word; word-break: break-all">
|
2013-08-14 22:05:57 +08:00
|
|
|
|
(<%= l(:label_all_revisions) %><%= @repositories.sort.collect {|repo|
|
2013-08-03 22:18:30 +08:00
|
|
|
|
link_to h(repo.name),
|
|
|
|
|
{:controller => 'repositories', :action => 'show',
|
|
|
|
|
:id => @project, :repository_id => repo.identifier_param, :rev => nil, :path => nil},
|
|
|
|
|
:class => 'repository' + (repo == @repository ? ' selected' : '')
|
2013-12-10 20:18:21 +08:00
|
|
|
|
}.join(' | ').html_safe %>)</p>
|
2014-04-14 15:51:43 +08:00
|
|
|
|
<h3>项目代码请设置好正确的编码方式(utf-8),否则中文会出现乱码</h3>
|
2013-12-11 10:31:49 +08:00
|
|
|
|
<h3>建立版本库文件夹,打开命令行执行如下:</h3>
|
2013-12-10 20:18:21 +08:00
|
|
|
|
<div class="repos_explain">
|
|
|
|
|
<p>git init</p>
|
|
|
|
|
<p>git add *</p>
|
|
|
|
|
<p>git commit -m "first commit"</p>
|
|
|
|
|
<p>git remote add origin <%= @repos_url%></p>
|
2014-05-14 10:07:01 +08:00
|
|
|
|
<p>git config http.postBuffer 524288000 #设置本地post缓存为500MB</p>
|
2013-12-11 10:31:49 +08:00
|
|
|
|
<p>git push -u origin master:master</p>
|
2013-12-10 20:18:21 +08:00
|
|
|
|
</div>
|
2014-04-14 15:31:35 +08:00
|
|
|
|
<h3>已经有本地库,还没有配置远程地址,打开命令行执行如下:</h3>
|
2013-12-11 07:56:42 +08:00
|
|
|
|
<div class="repos_explain">
|
|
|
|
|
<p>git remote add origin <%= @repos_url%></p>
|
2014-04-14 15:31:35 +08:00
|
|
|
|
<p>git add .</p>
|
|
|
|
|
<p>git commit -m "first commit"</p>
|
2014-05-14 10:07:01 +08:00
|
|
|
|
<p>git config http.postBuffer 524288000 #设置本地post缓存为500MB</p>
|
2014-05-15 17:10:02 +08:00
|
|
|
|
<p>git push -u origin master:master</p>
|
2013-12-11 07:56:42 +08:00
|
|
|
|
</div>
|
2014-04-14 15:31:35 +08:00
|
|
|
|
</h3>
|
|
|
|
|
<h3>从网上获取别人的开源版本库,转交到trustie网站上,打开命令行执行如下:</h3>
|
|
|
|
|
<div class="repos_explain">
|
|
|
|
|
<p>git remote add trustie <%= @repos_url%></p>
|
|
|
|
|
<p>git add .</p>
|
|
|
|
|
<p>git commit -m "first commit"</p>
|
2014-05-14 10:07:01 +08:00
|
|
|
|
<p>git config http.postBuffer 524288000 #设置本地post缓存为500MB</p>
|
2014-05-15 17:10:02 +08:00
|
|
|
|
<p>git push -u trustie master:master</p>
|
2014-04-14 15:51:43 +08:00
|
|
|
|
<p><%= link_to "李海提供", user_path(646)%></p>
|
2014-04-14 15:31:35 +08:00
|
|
|
|
</div>
|
2013-12-11 10:31:49 +08:00
|
|
|
|
</h3>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
<% if !@entries.nil? && authorize_for('repositories', 'browse') %>
|
|
|
|
|
<%= render :partial => 'dir_list' %>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<%= render_properties(@properties) %>
|
|
|
|
|
|
|
|
|
|
<% if authorize_for('repositories', 'revisions') %>
|
|
|
|
|
<% if @changesets && !@changesets.empty? %>
|
|
|
|
|
<h3><%= l(:label_latest_revision_plural) %></h3>
|
|
|
|
|
<%= render :partial => 'revisions',
|
|
|
|
|
:locals => {:project => @project, :path => @path,
|
|
|
|
|
:revisions => @changesets, :entry => nil }%>
|
|
|
|
|
<% end %>
|
|
|
|
|
<p>
|
|
|
|
|
<% has_branches = (!@repository.branches.nil? && @repository.branches.length > 0)
|
|
|
|
|
sep = '' %>
|
|
|
|
|
<% if @repository.supports_all_revisions? && @path.blank? %>
|
|
|
|
|
<%= link_to l(:label_view_all_revisions), :action => 'revisions', :id => @project,
|
|
|
|
|
:repository_id => @repository.identifier_param %>
|
|
|
|
|
<% sep = '|' %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% if @repository.supports_directory_revisions? &&
|
|
|
|
|
( has_branches || !@path.blank? || !@rev.blank? ) %>
|
|
|
|
|
<%= sep %>
|
|
|
|
|
<%= link_to l(:label_view_revisions),
|
|
|
|
|
:action => 'changes',
|
|
|
|
|
:path => to_path_param(@path),
|
|
|
|
|
:id => @project,
|
|
|
|
|
:repository_id => @repository.identifier_param,
|
|
|
|
|
:rev => @rev %>
|
|
|
|
|
<% end %>
|
|
|
|
|
</p>
|
|
|
|
|
<% if @repository.supports_all_revisions? %>
|
|
|
|
|
<% content_for :header_tags do %>
|
|
|
|
|
<%= auto_discovery_link_tag(
|
|
|
|
|
:atom, params.merge(
|
|
|
|
|
{:format => 'atom', :action => 'revisions',
|
|
|
|
|
:id => @project, :page => nil, :key => User.current.rss_key})) %>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<% other_formats_links do |f| %>
|
|
|
|
|
<%= f.link_to 'Atom',
|
|
|
|
|
:url => {:action => 'revisions', :id => @project,
|
|
|
|
|
:repository_id => @repository.identifier_param,
|
|
|
|
|
:key => User.current.rss_key} %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
2013-08-27 20:43:30 +08:00
|
|
|
|
<!-- added by bai -->
|
|
|
|
|
<strong><span style="color: #099;"><%= l(:label_how_commit_code) %></span></strong> <%= link_to(l(:label_how_commit_code_chinese), ch_usage_path, :class => "usage")%> | <%= link_to('English', en_usage_path, :class => "usage")%>
|
|
|
|
|
<!-- end -->
|
2013-08-03 22:18:30 +08:00
|
|
|
|
|
2013-08-01 10:33:49 +08:00
|
|
|
|
|
|
|
|
|
<% content_for :header_tags do %>
|
|
|
|
|
<%= stylesheet_link_tag "scm" %>
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
<% html_title(l(:label_repository)) -%>
|