1 <%# Copyright (C) The Arvados Authors. All rights reserved.
3 SPDX-License-Identifier: AGPL-3.0 %>
6 filters = @filters + [["owner_uuid", "=", current_user.uuid]]
7 example = Repository.all.order("name ASC").filter(filters).limit(1).results.first
8 example = Repository.all.order("name ASC").limit(1).results.first if !example
14 Sample git quick start:
18 git clone <%= example.push_url %> <%= example.name unless example.push_url.match(/:(\S+)\.git$/).andand[1] == example.name %>
19 cd <%= example.name %>
21 git add the/files/you/changed
30 <%= link_to raw('Arvados Docs → User Guide → SSH access'),
31 "#{Rails.configuration.Workbench.ArvadosDocsite}/user/getting_started/ssh-access-unix.html",
32 target: "_blank"%> and
33 <%= link_to raw('Arvados Docs → User Guide → Writing a Crunch
35 "#{Rails.configuration.Workbench.ArvadosDocsite}/user/tutorials/tutorial-firstscript.html",