git拉取项目下的指定目录
//初始化仓库
git init
//建立连接
git remote git remote add -f origin "地址"
//开启sparse checkout功能(允许指定目录拉取)
git config core.sparsecheckout true
//添加指定目录名到配置文件
echo "指定目录名/" >> .git/info/sparse-checkout
//查看是否添加正确
cat .git/info/sparse-checkout
//拉取指定分支
git pull origin master
配置git记住账户密码功能
//1.长期存储
git config --global credential.helper store
//2.临时存储 3600s
git config credential.helper 'cache --timeout=3600'
然后正常拉取或提交,输入一次账号密码后之后就可以不再输入
网友评论