ubuntu服务器中repo的安装使用


1.新建一个目录/home/workspace/myrepo,cd到这个目录。

2.在这个目录里面执行git clone https://gerrit-googlesource.lug.ustc.edu.cn/git-repo,会clone下载repo包的git分支。

3.cd 到刚才下载的/home/workspace/myrepo/git-repo。

4.用vim修改repo文件中REPO_URL ="git-repo里面的.git文件路径",保存。

5.切换到root用户,将repo文件拷贝到/bin目录下,并chmod a+x repo修改权限。

6.在myrepo下,mkdir manifest.git; cd manifest.git,git init。

7.在上面目录下新建default.xml,添加如下内容

<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<remote name="repo-server" fetch="/home/workspace/myrepo/" review="review.source.Android.com" />
<default revision="master" remote="repo-server" />
<project name="RK3288" path="RK3288"/>
</manifest>

8.执行git add default.xml,git commit -m "add default.xml"。

9.将RK3288代码移入/home/workspace/myrepo/,注意RK3288目录下必须有.git的才行。

10.在客户端目录/home/workspace/mywork/下执行repo init/home/workspace/myrepo/manifest.git,repo sync即可将RK3288代码同步到这个目录下。

相关文章

1.安装过程出现0x00000000指令引用的0x00000000内存该内存不能为written 如果你安装的是inux系统 需要在...
写在全面:如果根据以下教程涉及到只读文件需要更改文件权限才能需修改文件内容,参考我的另一篇博客:...
写在前面:以下步骤中需要在终端输入命令,电脑端查看博客的朋友可以直接复制粘贴到终端,手机端查看的...
ubuntu16.04和18.04更换国内源 写在前面:安装好ubuntu双系统后,默认的软件更新源是国外的,在国内使用...
ubuntu双系统启动时卡死解决办法(在ubuntu16.04和18.04测试无误) 问题描述: 在安装完ubuntu双系统后...
又来造轮子了。。。。。。。。。。。。。。。。 今天使用w3af向文件中写入的时候,发现没有write权限,...