Repo on Windows

Repo本身是Python写的脚步。因此在Windows上运行时可以不用Cygwin等工具来模拟Linux环境。

Github上给了一个很清楚的Windows使用步骤。现在分享给大家。学习技术最好的资料还是看“官网”https://github.com/esrlabs/git-repo

首先你需要安装Git和Python2.7(不能是3.x版本)。

Download and install Git
  • Download Git (http://git-scm.com/downloads)

  • Add Git to your path environment variable: e.g. C:\Program Files (x86)\Git\cmd;

  • Add MinGW to your path environment variable: e.g. C:\Program Files (x86)\Git\bin;

Download and install Python
  • Download Python 2.7+ (https://www.python.org/downloads/)

  • Add Python to your path environment variable: e.g. C:\Python27;

  • Note: Python 3.x is supported on an experimental bases by git-repo

安装完成后,把环境变量设置好。特别是Git\bin目录。这个目录包含很多Linux Tool的Windows版本,比如后面要用的curl,当然还有cat、grep、gzip等等。

然后就可以在自己的用户目录下创建一个repo存放目录,并且把repo下载下来:

md %USERPROFILE%\bin
curl -k https://raw.githubusercontent.com/esrlabs/git-repo/stable/repo > %USERPROFILE%/bin/repo
curl -k https://raw.githubusercontent.com/esrlabs/git-repo/stable/repo.cmd > %USERPROFILE%/bin/repo.cmd

最后将%USERPROFILE%\bin添加到环境变量即可使用repo命令了。如果不能使用%USERPROFILE%\bin,可以将%USERPROFILE%替换成具体目录。

你可能感兴趣的:(Repo on Windows)