Git 拉取部分代码
原文
基本流程
mkdir 仓库名
cd 仓库名
git init
git remote add origin git地址
// 开启Sparse Checkout模式
git config core.sparsecheckout true
// 设置需Check Out的文件
echo "文件路径" >> .git/info/sparse-checkout
// Check Out
git pull origin 分支名(一般是master)
python实现
import os
impor……