问题描述
#建立如下目录
tree
.
├── repo_manifest
│ └── default.xml #默认清单
└── repo_test #测试仓库
├── Makefile
└── readme.md
default.xml
内容
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<remote name="server" alias="origin" fetch="http://10.147.20.116:3000" />
<default remote="server" revision="master" sync-j="4" sync_s="ture" sync_c="false" />
<project name="git/repo_test" path="repo_test"></project>
<linkfile src="readme.md" dest="readme.md" />
<copyfile src="Makefile" dest="Makefile" />
</manifest>
把这两个仓库推送到git服务器(例如 gitee)
在test_dir2
目录下,使用repo管理git仓库
#获取清单库
repo init -u http://10.147.20.116:3000/git/repo_manifest.git
#同步项目
repo sync
#得到的结果如下
tree
.
└── repo_test
├── Makefile
└── readme.md
copyfile,linkfile并不起作用
标签:copyfile,git,不起作用,linkfile,repo,test From: https://www.cnblogs.com/fedorayang/p/18429825