> For the complete documentation index, see [llms.txt](https://ibm-developer.gitbook.io/digital-developer-conference-hybrid-cloud/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ibm-developer.gitbook.io/digital-developer-conference-hybrid-cloud/threat-modeling-and-identity-management/lab1/clone-the-repo.md).

# Clone the repo

## Clone the example-bank repo

Clone the repo **example-bank** if you haven't yet

```
$ git clone https://github.com/IBM/example-bank
$ cd example-bank
```

## Login with ibmcloud and oc cli

Log in your IBM Cloud account with the `ibmcloud` cli

*Make sure to use your personal account when it asks you.*

```
$ ibmcloud login -u YOUR_IBM_CLOUD_EMAIL
```

Log in with the OpenShift cluster provided for you using the OpenShift console. On the upper right corner, click your account and then click on `Copy Login Command`. This should open a new window and show you the command to login with the `oc` cli

![IBM Cloud dashboard](https://3928126737-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MHI9hQsrkpOgN4dX6Cj%2Fsync%2Fdd055cc9d075a6f9155e098fb5caa737cb1b744a.png?generation=1600695207795110\&alt=media)

![OpenShift Console](https://3928126737-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MHI9hQsrkpOgN4dX6Cj%2Fsync%2F111a8d61189b70c010916d18733841f27be1df29.png?generation=1600426883164896\&alt=media)

Create a project named **example-bank** for the resources you'll deploy.

```
$ oc new-project example-bank
```

Also, make sure you are using the **example-bank** project.

```
$ oc project example-bank
```
