编辑
git拉取指定的文件夹
本文访问次数:0

如果只要拉取git仓库的指定文件夹(注意不是文件),请参考以下代码,以下代码执行完毕后,只会拉取/languages/文件夹,亲测可用,windows下的用户请酌情修改代码(主要是echo)。

mkdir hexo-theme-nojs
cd hexo-theme-nojs
git init
git remote add origin https://github.com/zongren/hexo-theme-nojs.git
git config core.sparsecheckout true
echo /languages/ >> .git/info/sparse-checkout
git pull --depth=1 origin master

P.S. github不支持git archive命令

需要输入验证码才能留言

没有任何评论