|
|
@ -7,79 +7,93 @@
|
|
|
|
<%= render :partial => 'breadcrumbs',
|
|
|
|
<%= render :partial => 'breadcrumbs',
|
|
|
|
:locals => { :path => @path, :kind => 'dir', :revision => @rev } %>
|
|
|
|
:locals => { :path => @path, :kind => 'dir', :revision => @rev } %>
|
|
|
|
<div style="font-size:15px;">
|
|
|
|
<div style="font-size:15px;">
|
|
|
|
<%if @repository.type.to_s=="Repository::Git"%>
|
|
|
|
<%if @repository.type.to_s=="Repository::Git"%>
|
|
|
|
<%= @repos_url%>
|
|
|
|
<%= @repos_url%>
|
|
|
|
<%else %>
|
|
|
|
<%else %>
|
|
|
|
<td><%=h @repository.url %></td>
|
|
|
|
<td>
|
|
|
|
<% end %>
|
|
|
|
<%=h @repository.url %>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<p style=" word-wrap: break-word; word-break: break-all">
|
|
|
|
<p style=" word-wrap: break-word; word-break: break-all">
|
|
|
|
(<%= l(:label_all_revisions) %><%= @repositories.sort.collect {|repo|
|
|
|
|
(<%= l(:label_all_revisions) %><%= @repositories.sort.collect {|repo|
|
|
|
|
link_to h(repo.name),
|
|
|
|
link_to h(repo.name),
|
|
|
|
{:controller => 'repositories', :action => 'show',
|
|
|
|
{:controller => 'repositories', :action => 'show',
|
|
|
|
:id => @project, :repository_id => repo.identifier_param, :rev => nil, :path => nil},
|
|
|
|
:id => @project, :repository_id => repo.identifier_param, :rev => nil, :path => nil},
|
|
|
|
:class => 'repository' + (repo == @repository ? ' selected' : '')
|
|
|
|
:class => 'repository' + (repo == @repository ? ' selected' : '')
|
|
|
|
}.join(' | ').html_safe %>)</p>
|
|
|
|
}.join(' | ').html_safe %>)
|
|
|
|
<h3>项目代码请设置好正确的编码方式(utf-8),否则中文会出现乱码</h3>
|
|
|
|
</p>
|
|
|
|
<h3>建立版本库文件夹,打开命令行执行如下:</h3>
|
|
|
|
<h3>项目代码请设置好正确的编码方式(utf-8),否则中文会出现乱码</h3>
|
|
|
|
<div class="repos_explain">
|
|
|
|
<h3>建立版本库文件夹,打开命令行执行如下:</h3>
|
|
|
|
<p>git init</p>
|
|
|
|
<div class="repos_explain">
|
|
|
|
<p>git add *</p>
|
|
|
|
<p>git init</p>
|
|
|
|
<p>git commit -m "first commit"</p>
|
|
|
|
<p>git add *</p>
|
|
|
|
<p>git remote add origin <%= @repos_url%></p>
|
|
|
|
|
|
|
|
<p>git config http.postBuffer 524288000 #设置本地post缓存为500MB</p>
|
|
|
|
|
|
|
|
<p>git push -u origin master:master</p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h3>已经有本地库,还没有配置远程地址,打开命令行执行如下:</h3>
|
|
|
|
|
|
|
|
<div class="repos_explain">
|
|
|
|
|
|
|
|
<p>git remote add origin <%= @repos_url%></p>
|
|
|
|
|
|
|
|
<p>git add .</p>
|
|
|
|
|
|
|
|
<p>git commit -m "first commit"</p>
|
|
|
|
<p>git commit -m "first commit"</p>
|
|
|
|
|
|
|
|
<p>git remote add origin
|
|
|
|
|
|
|
|
<%= @repos_url%>
|
|
|
|
|
|
|
|
</p>
|
|
|
|
<p>git config http.postBuffer 524288000 #设置本地post缓存为500MB</p>
|
|
|
|
<p>git config http.postBuffer 524288000 #设置本地post缓存为500MB</p>
|
|
|
|
<p>git push -u origin master:master</p>
|
|
|
|
<p>git push -u origin master:master</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</h3>
|
|
|
|
<h3>已经有本地库,还没有配置远程地址,打开命令行执行如下:</h3>
|
|
|
|
<h3>从网上获取别人的开源版本库,转交到trustie网站上,打开命令行执行如下:</h3>
|
|
|
|
<div class="repos_explain">
|
|
|
|
<div class="repos_explain">
|
|
|
|
<p>git remote add origin <%= @repos_url%></p>
|
|
|
|
<p>git remote add trustie <%= @repos_url%></p>
|
|
|
|
|
|
|
|
<p>git add .</p>
|
|
|
|
<p>git add .</p>
|
|
|
|
<p>git commit -m "first commit"</p>
|
|
|
|
<p>git commit -m "first commit"</p>
|
|
|
|
<p>git config http.postBuffer 524288000 #设置本地post缓存为500MB</p>
|
|
|
|
<p>git config http.postBuffer 524288000 #设置本地post缓存为500MB</p>
|
|
|
|
<p>git push -u trustie master:master</p>
|
|
|
|
<p>git push -u origin master:master</p>
|
|
|
|
<p><%= link_to "李海提供", user_path(646)%></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<h3>已有远程地址,创建一个远程分支,并切换到该分支,打开命令行执行如下:</h3>
|
|
|
|
|
|
|
|
<div class="repos_explain">
|
|
|
|
|
|
|
|
<p>git clone <%= @repos_url%></p>
|
|
|
|
|
|
|
|
<p>git push</p>
|
|
|
|
|
|
|
|
<p>git checkout -b branch_name</p>
|
|
|
|
|
|
|
|
<p>git push origin branch_name</p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</h3>
|
|
|
|
</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>
|
|
|
|
|
|
|
|
<p>git config http.postBuffer 524288000 #设置本地post缓存为500MB</p>
|
|
|
|
|
|
|
|
<p>git push -u trustie master:master</p>
|
|
|
|
|
|
|
|
<p><%= link_to "李海", user_path(646)%>提供</p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<% if !@entries.nil? && authorize_for('repositories', 'browse') %>
|
|
|
|
<% if !@entries.nil? && authorize_for('repositories', 'browse') %>
|
|
|
|
<%= render :partial => 'dir_list' %>
|
|
|
|
<%= render :partial => 'dir_list' %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
|
|
<%= render_properties(@properties) %>
|
|
|
|
<%= render_properties(@properties) %>
|
|
|
|
|
|
|
|
|
|
|
|
<% if authorize_for('repositories', 'revisions') %>
|
|
|
|
<% if authorize_for('repositories', 'revisions') %>
|
|
|
|
<% if @changesets && !@changesets.empty? %>
|
|
|
|
<% if @changesets && !@changesets.empty? %>
|
|
|
|
<h3><%= l(:label_latest_revision_plural) %></h3>
|
|
|
|
<h3>
|
|
|
|
|
|
|
|
<%= l(:label_latest_revision_plural) %>
|
|
|
|
|
|
|
|
</h3>
|
|
|
|
<%= render :partial => 'revisions',
|
|
|
|
<%= render :partial => 'revisions',
|
|
|
|
:locals => {:project => @project, :path => @path,
|
|
|
|
:locals => {:project => @project, :path => @path,
|
|
|
|
:revisions => @changesets, :entry => nil }%>
|
|
|
|
:revisions => @changesets, :entry => nil }%>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<p>
|
|
|
|
<p>
|
|
|
|
<% has_branches = (!@repository.branches.nil? && @repository.branches.length > 0)
|
|
|
|
<% has_branches = (!@repository.branches.nil? && @repository.branches.length > 0)
|
|
|
|
sep = '' %>
|
|
|
|
sep = '' %>
|
|
|
|
<% if @repository.supports_all_revisions? && @path.blank? %>
|
|
|
|
<% if @repository.supports_all_revisions? && @path.blank? %>
|
|
|
|
<%= link_to l(:label_view_all_revisions), :action => 'revisions', :id => @project,
|
|
|
|
<%= link_to l(:label_view_all_revisions), :action => 'revisions', :id => @project,
|
|
|
|
:repository_id => @repository.identifier_param %>
|
|
|
|
:repository_id => @repository.identifier_param %>
|
|
|
|
<% sep = '|' %>
|
|
|
|
<% sep = '|' %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% if @repository.supports_directory_revisions? &&
|
|
|
|
<% if @repository.supports_directory_revisions? && ( has_branches || !@path.blank? || !@rev.blank? ) %>
|
|
|
|
( has_branches || !@path.blank? || !@rev.blank? ) %>
|
|
|
|
<%= sep %>
|
|
|
|
<%= sep %>
|
|
|
|
<%= link_to l(:label_view_revisions),
|
|
|
|
<%= link_to l(:label_view_revisions),
|
|
|
|
:action => 'changes',
|
|
|
|
:action => 'changes',
|
|
|
|
:path => to_path_param(@path),
|
|
|
|
:path => to_path_param(@path),
|
|
|
|
:id => @project,
|
|
|
|
:id => @project,
|
|
|
|
:repository_id => @repository.identifier_param,
|
|
|
|
:repository_id => @repository.identifier_param,
|
|
|
|
:rev => @rev %>
|
|
|
|
:rev => @rev %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
</p>
|
|
|
|
</p>
|
|
|
|
<% if @repository.supports_all_revisions? %>
|
|
|
|
<% if @repository.supports_all_revisions? %>
|
|
|
|
<% content_for :header_tags do %>
|
|
|
|
<% content_for :header_tags do %>
|
|
|
@ -99,7 +113,15 @@
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- added by bai -->
|
|
|
|
<!-- 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")%>
|
|
|
|
<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 -->
|
|
|
|
<!-- end -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|