We will provide an example of how to clone a Git Repo in AWS SageMaker. Assume that you work with a SageMaker Notebook and you want to clone a Git Repository, let’s say the https://github.com/pipinho13/aws-cli. What we have to do is to go to Jupyter Notebook–>New–>Terminal
Then, within the terminal, we change the directory to SageMaker as follows:
cd SageMaker/
And then:
git clone https://github.com/pipinho13/aws-cli
As we can see now, in our working directory, we can see the aws-cli
folder that we cloned earlier.