Add clone branch & comments in sparse checkout script (#45)

This commit is contained in:
María Medina 2022-07-20 09:32:16 +02:00 коммит произвёл GitHub
Родитель 7cdcd12a1a
Коммит 3742042f1d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -8,7 +8,9 @@ project_template_github_url=https://github.com/azure/mlops-project-template #r
cd $git_folder_location
# Clone MLOps Project repo
git clone \
--branch 'main' \
--depth 1 \
--filter=blob:none \
--sparse \
@ -19,6 +21,7 @@ cd $project_name
git sparse-checkout init --cone
git sparse-checkout set infrastructure/$infrastructure_version $project_type/$mlops_version
# Move files to appropiate level
mv $project_type/$mlops_version/data-science data-science
mv $project_type/$mlops_version/mlops mlops
mv $project_type/$mlops_version/data data
@ -35,6 +38,7 @@ mv infrastructure/$infrastructure_version $infrastructure_version
rm -rf infrastructure
mv $infrastructure_version infrastructure
# Upload to custom repo in Github
rm -rf .git
git init -b main
git remote add origin git@github.com:$github_org_name/$project_name.git