diff --git a/app/views/repositories/show.html.erb b/app/views/repositories/show.html.erb index d11fd2564..570f87064 100644 --- a/app/views/repositories/show.html.erb +++ b/app/views/repositories/show.html.erb @@ -7,79 +7,93 @@ <%= render :partial => 'breadcrumbs', :locals => { :path => @path, :kind => 'dir', :revision => @rev } %>
- (<%= l(:label_all_revisions) %><%= @repositories.sort.collect {|repo| - 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' : '') - }.join(' | ').html_safe %>)
-git init
-git add *
-git commit -m "first commit"
-git remote add origin <%= @repos_url%>
++ (<%= l(:label_all_revisions) %><%= @repositories.sort.collect {|repo| + 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' : '') + }.join(' | ').html_safe %>) +
+git init
+git add *
+git commit -m "first commit"
+git remote add origin + <%= @repos_url%> +
git config http.postBuffer 524288000 #设置本地post缓存为500MB
-git push -u origin master:master
-git remote add origin <%= @repos_url%>
+git push -u origin master:master
+git remote add origin <%= @repos_url%>
git add .
git commit -m "first commit"
git config http.postBuffer 524288000 #设置本地post缓存为500MB
-git push -u origin master:master
-git push -u origin master:master
+git clone <%= @repos_url%>
+git push
+git checkout -b branch_name
+git push origin branch_name
+git remote add trustie <%= @repos_url%>
-git add .
-git commit -m "first commit"
-git config http.postBuffer 524288000 #设置本地post缓存为500MB
-git push -u trustie master:master
-<%= link_to "李海提供", user_path(646)%>
-git remote add trustie + <%= @repos_url%> +
+git add .
+git commit -m "first commit"
+git config http.postBuffer 524288000 #设置本地post缓存为500MB
+git push -u trustie master:master
+<%= link_to "李海", user_path(646)%>提供
+- <% 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 %> + <% 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 %>
<% if @repository.supports_all_revisions? %> <% content_for :header_tags do %> @@ -99,7 +113,15 @@ <% end %> -<%= l(:label_how_commit_code) %> <%= link_to(l(:label_how_commit_code_chinese), ch_usage_path, :class => "usage")%> | <%= link_to('English', en_usage_path, :class => "usage")%> + + + <%= l(:label_how_commit_code) %> + + + +<%= link_to(l(:label_how_commit_code_chinese), ch_usage_path, :class => "usage")%> + | +<%= link_to('English', en_usage_path, :class => "usage")%>