Azure / mlops-v2

Azure MLOps (v2) solution accelerators. Enterprise ready templates to deploy your machine learning models on the Azure Platform.
https://learn.microsoft.com/en-us/azure/machine-learning/concept-model-management-and-deployment
MIT License
503 stars 248 forks source link

issues with mlops-v2/sparse_checkout.sh #38

Closed ManojBableshwar closed 1 year ago

ManojBableshwar commented 2 years ago

I bumped into the following issues while running mlops-v2/sparse_checkout.sh. I worked around them because i knew what the cmds were trying to accomplish.

Issue 1:

workaroud - used this cmd (not sure why above doesn't work) git clone https://github.com/azure/mlops-project-template --depth 1 --filter=blob:none MLOps711Demo

Issue 2:

Workaound: first inited the repo and then renamed branch from master to main

git init git add . && git commit -m 'initial commit' git branch -m master main

socullen commented 2 years ago

Thank you very much! I was facing the same issues and this workaround helped solve them.

krisbock commented 2 years ago

This is also caused by having git version 2.25.1. Upgrading to git version 2.37.3 resolves this. Workarounds not required.