I am using the Python Databricks REST API. I create folder in the workspace:
workspace_api = WorkspaceApi(api_client)
workspace_api.mkdirs("/Users/xxxx/myfirstrepo")
Then, I checkout a repo:
repos_api = ReposApi(api_client)
repos_api.create("https://github.com/xxx","github","/Repos/xxx/freshRepo")
Now, I want to copy the content of the repo to the workspace folder myfirstrepo
. How can I do this?
Thanks