8784: Fix test for latest firefox.
[arvados.git] / apps / workbench / app / views / repositories / _show_help.html.erb
1 <% if (example = @objects.select(&:push_url).first) %>
2
3 <p>
4 Sample git quick start:
5 </p>
6
7 <pre>
8 git clone <%= example.push_url %> <%= example.name unless example.push_url.match(/:(\S+)\.git$/).andand[1] == example.name %>
9 cd <%= example.name %>
10 # edit files
11 git add the/files/you/changed
12 git commit
13 git push
14 </pre>
15
16 <% end %>
17
18 <p>
19   See also:
20   <%= link_to raw('Arvados Docs &rarr; User Guide &rarr; SSH access'),
21   "#{Rails.configuration.arvados_docsite}/user/getting_started/ssh-access-unix.html",
22       target: "_blank"%> and 
23   <%= link_to raw('Arvados Docs &rarr; User Guide &rarr; Writing a Crunch
24   Script'),
25   "#{Rails.configuration.arvados_docsite}/user/tutorials/tutorial-firstscript.html",
26   target: "_blank"%>.
27 </p>