当前位置:   article > 正文

Repo全解之自己搭建repo仓库_fatal: manifest url is required.

fatal: manifest url is required.

repo是什么

是什么: Repo是基于git的仓库管理工具,是一个python脚本
干什么: Repo管理很多的git仓库,可以做统一的上传等其他操作,并且可以自动化部分Andoid开发流程

repo引导器

首先要说一下repo分为两部分, 一部分时一个名叫repo的python文件,另一部分是一个名叫repo.git这么一个git仓库.
而这个repo文件好像是一个引导器,一下命令下载它并设置它为可执行:

$curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo  
$chmod a+x ~/bin/repo  
  • 1
  • 2

此时,你可以运行一下它:

$~/bin/repo  #你也可以把它添加到PATH里
error: repo is not installed.  Use "repo init" to install it here. 
  • 1
  • 2

提示没有安装repo
如果再执行以下命令:

$~/bin/repo help

usage: repo COMMAND [ARGS]

repo is not yet installed.  Use "repo init" to install it here.

The most commonly used repo commands are:

  init      Install repo in the current working directory
  help      Display detailed help on a command

For access to the full online help, install repo ("repo init").
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

提示你repo没安装,可以使用repo init安装.并且只支持两个子命令.
这就说明,这个repo文件是一个引导器,或者是安装器.
它要如何安装呢?

repo.git gpg签名

我们就按照它的提示来操作,运行:


                
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/636856
推荐阅读
相关标签
  

闽ICP备14008679号