X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/4a5c16b70d01e063ae8fb82ee576a542b3a2376f..4d6e05c25c6a5d72afee37f8165b006267b4183d:/doc/user/tutorials/tutorial-submit-job.html.textile.liquid diff --git a/doc/user/tutorials/tutorial-submit-job.html.textile.liquid b/doc/user/tutorials/tutorial-submit-job.html.textile.liquid index de607845d2..a77273763d 100644 --- a/doc/user/tutorials/tutorial-submit-job.html.textile.liquid +++ b/doc/user/tutorials/tutorial-submit-job.html.textile.liquid @@ -24,19 +24,28 @@ All Crunch scripts are managed through the Git revision control system. Before On the Arvados Workbench, click on the dropdown menu icon in the upper right corner of the top navigation menu to access the user settings menu, and click on the menu item *Manage account* to go to the account management page. -On the *Manage account* page, you will see *Repositories* panel. In this panel, you should see the @$USER/tutorial@ repository listed in the *name* column. Next to *name* is the column *URL*. Copy the *URL* value associated with your repository. This should look like git@git.{{ site.arvados_api_host }}:$USER/tutorial.git. +On the *Manage account* page, you will see *Repositories* panel. In this panel, you should see the @$USER/tutorial@ repository listed in the *name* column. Next to *name* is the column *URL*. Copy the *URL* value associated with your repository. This should look like https://git.{{ site.arvados_api_host }}/$USER/tutorial.git. Alternatively, you can use git@git.{{ site.arvados_api_host }}:$USER/tutorial.git Next, on the Arvados virtual machine, clone your Git repository:
~$ cd $HOME # (or wherever you want to install)
-~$ git clone git@git.{{ site.arvados_api_host }}:$USER/tutorial.git
+~$ git clone https://git.{{ site.arvados_api_host }}/$USER/tutorial.git
 Cloning into 'tutorial'...
This will create a Git repository in the directory called @tutorial@ in your home directory. Say yes when prompted to continue with connection. Ignore any warning that you are cloning an empty repository. +*Note:* If you are prompted for username and password when you try to git clone using this command, you may first need to update your git configuration. Execute the following commands to update your git configuration. + + +
+~$ git config 'credential.https://git.{{ site.arvados_api_host }}/.username' none
+~$ git config 'credential.https://git.{{ site.arvados_api_host }}/.helper' '!cred(){ cat >/dev/null; if [ "$1" = get ]; then echo password=$ARVADOS_API_TOKEN; fi; };cred'
+
+
+ {% include 'notebox_begin' %} For more information about using Git, try