tweak example templates
[arvados.git] / apps / workbench / app / views / repositories / index.html.erb
1 <%= render partial: 'application/index' %>
2
3 <% if (example = @objects.select(&:push_url).first) %>
4
5 <p>
6 Sample git quick start:
7 </p>
8
9 <pre>
10 git clone <%= example.push_url %> <%= example.name unless example.push_url.match(/:(\S+)\.git$/).andand[1] == example.name %>
11 cd <%= example.name %>
12 # edit files
13 git add the/files/you/changed
14 git commit
15 git push
16 </pre>
17
18 <% end %>
19
20 <p>
21   See also:
22   <%= link_to raw('Arvados Docs &rarr; User Guide &rarr; git'), 'http://doc.arvados.org/user/intro-git.html' %>.
23 </p>