Git如何检出指定目录或文件
2018-07-25 本文已影响116人
孙科技
操作流程
1、git init (初始化git,生成.git文件)
2、git config core.sparsecheckout true (打开 sparse checkout(稀疏检出)开关,如果要关闭稀疏检出,要重置为false即可)
3、git xx >> .git/info/sparse-checkout (xx为配置检出的git远程仓库的文件夹)
4、git remote -v (列出详细信息,在每一个名字后面列出其远程url)
5、git remote add origin http://xxxx (配置远程仓库路径)
6、git pull origin master (检出该远程仓库下的指定目录或文件)
检查操作
1、cat .git/info/sparse-checkout (查看指定目录或文件是否配置成功)
2、config --list(查看 sparse checkout(稀疏检出)开关 是否打开)
关闭 sparse checkout(稀疏检出)操作
1、git config core.sparsecheckout false
2、rm -rf .git/info/sparse-checkout (移除 .git/info/sparse-checkout 文件)
到此所有操作完成