DRAG DROP - You are using a Git repository to track work in an Azure Machine Learning workspace. You need to authenticate a Git account by using SSH. Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. Select and Place: Â Suggested Answer: Authenticate your Git Account with SSH: Step 1: Generating a public/private key pair Generate a new SSH key - 1. Open the terminal window in the Azure Machine Learning Notebook Tab. 2. Paste the text below, substituting in your email address. ssh-keygen -t rsa -b 4096 -C " your_email@example.com " This creates a new ssh key, using the provided email as a label. > Generating public/private rsa key pair. Step 2: Add the public key to the Git Account In your terminal window, copy the contents of your public key file. Step 3: Clone the Git repository by using an SSH repository URL 1. Copy the SSH Git clone URL from the Git repo. 2. Paste the url into the git clone command below, to use your SSH Git repo URL. This will look something like: git clone git@example.com :GitUser/azureml-example.git Cloning into 'azureml-example'. Reference: https://docs.microsoft.com/en-us/azure/machine-learning/concept-train-model-git-integration This question is in DP-100 Exam For getting Microsoft Azure Data Scientist Associate Certificate Disclaimers: The website is not related to, affiliated with, endorsed or authorized by Microsoft. The website does not contain actual questions and answers from Microsoft's Certification Exams. Trademarks, certification & product names are used for reference only and belong to Microsoft.
Please login or Register to submit your answer