repo 官方教程
参考
http://android.git.kernel.org/repo
http://source.android.com/source/downloading.html
http://source.android.com/source/version-control.html
https://source.android.com/source/using-repo.html
repo只是google用Python脚本写的调用Git的一个脚本,主要是用来下载、管理Android项目的软件仓库。
下载 repo
$wget http://android.git.kernel.org/rep
或者
$curl http://android.git.kernel.org/repo >~/bin/repo
增加执行权限
$chmod a+x ~/bin/repo
Repo command reference
Repo usage takes the following form:
repo <COMMAND> <OPTIONS>
Optional elements are shown in brackets [ ]. For example, many commands take a project list as an argument. You can specify project-list as a list of names or a list of paths to local source directories for the projects:
repo sync [<PROJECT0> <PROJECT1> <PROJECTN>]
repo sync [</PATH/TO/PROJECT0> ... </PATH/TO/PROJECTN>]
help
Once Repo is installed, you can find the latest documentation starting with a summary of all commands by running:
repo help
You can get information about any command by running this within a Repo tree:
repo help <COMMAND>
For example, the following command yields a description and list of options for the init argument of Repo, which initializes Repo in the current directory. (See init for more details.)
repo help init
init
$ repo init -u <URL> [<OPTIONS>]
Installs Repo in the current directory. This creates a .repo/ directory that contains Git repositories for the Repo source code and the standard Android manifest files. The .repo/ directory also contains manifest.xml, which is a symlink to the selected manifest in the .repo/manifests/ directory.
Options:
-u: specify a URL from which to retrieve a manifest repository. The common manifest can be found athttps://android.googlesource.com/platform/manifest-m: select a manifest file within the repository. If no manifest name is selected, the default is default.xml.-b: specify a revision, i.e., a particular manifest-branch.
Note: For all remaining Repo commands, the current working directory must either be the parent directory of .repo/ or a subdirectory of the parent directory.
只能在包含.repo的目录及其子目录内执行repo命令
sync
repo sync [<PROJECT_LIST>]
Downloads new changes and updates the working files in your local environment. If you run repo sync without any arguments, it will synchronize the files for all the projects.
When you run repo sync, this is what happens:
If the project has never been synchronized, then
repo syncis equivalent togit clone. All branches in the remote repository are copied to the local project directory.If the project has already been synchronized once, then
repo syncis equivalent to:git remote update
git rebase origin/<BRANCH>where
<BRANCH>is the currently checked-out branch in the local project directory. If the local branch is not tracking a branch in the remote repository, then no synchronization will occur for the project.If the git rebase operation results in merge conflicts, you will need to use the normal Git commands (for example,
git rebase --continue) to resolve the conflicts.
After a successful repo sync, the code in specified projects will be up to date with the code in the remote repository.
Options:
repo sync的3个参数选项: -d -s -f
-d: switch specified projects back to the manifest revision. Helpful if the project is currently on a topic branch, but the manifest revision is temporarily needed.-s: sync to a known good build as specified by the manifest-server element in the current manifest.-f: proceed with syncing other projects even if a project fails to sync.
upload
repo upload [<PROJECT_LIST>]
For the specified projects, Repo compares the local branches to the remote branches updated during the last repo sync. Repo will prompt you to select one or more of the branches that have not yet been uploaded for review.
After you select one or more branches, all commits on the selected branches are transmitted to Gerrit over an HTTPS connection. You will need to configure an HTTPS password to enable upload authorization. Visit the Password Generator to generate a new username/password pair to use over HTTPS.
When Gerrit receives the object data over its server, it will turn each commit into a change so that reviewers can comment on each commit individually. To combine several "checkpoint" commits together into a single commit, use git rebase -i before you run repo upload.
If you run repo upload without any arguments, it will search all the projects for changes to upload.
To make edits to changes after they have been uploaded, you should use a tool like git rebase -i or git commit --amend to update your local commits. After your edits are complete:
Make sure the updated branch is the currently checked out branch.
For each commit in the series, enter the Gerrit change ID inside the brackets:
# Replacing from branch foo
[ 3021 ] 35f2596c Refactor part of GetUploadableBranches to lookup one specific...
[ 2829 ] ec18b4ba Update proto client to support patch set replacments
# Insert change numbers in the brackets to add a new patch set.
# To create a new change record, leave the brackets empty.
After the upload is complete the changes will have an additional Patch Set.
diff
repo diff [<PROJECT_LIST>]
Shows outstanding changes between commit and working tree using git diff.
download
repo download <TARGET> <CHANGE>
Downloads the specified change from the review system and makes it available in your project's local working directory.
For example, to download change 23823 into your platform/build directory:
$ repo download platform/build
A repo sync should effectively remove any commits retrieved via repo download. Or, you can check out the remote branch; e.g., git checkout m/master.
Note: There is a slight mirroring lag between when a change is visible on the web in Gerrit and when repo download will be able to find it for all users, because of replication delays to all servers worldwide.
forall
repo forall [<PROJECT_LIST>] -c <COMMAND>
Executes the given shell command in each project. The following additional environment variables are made available by repo forall:
REPO_PROJECTis set to the unique name of the project.REPO_PATHis the path relative to the root of the client.REPO_REMOTEis the name of the remote system from the manifest.REPO_LREVis the name of the revision from the manifest, translated to a local tracking branch. Used if you need to pass the manifest revision to a locally executed git command.REPO_RREVis the name of the revision from the manifest, exactly as written in the manifest.
Options:
-c: command and arguments to execute. The command is evaluated through/bin/shand any arguments after it are passed through as shell positional parameters.-p: show project headers before output of the specified command. This is achieved by binding pipes to the command's stdin, stdout, and sterr streams, and piping all output into a continuous stream that is displayed in a single pager session.-v: show messages the command writes to stderr.
prune
repo prune [<PROJECT_LIST>]
Prunes (deletes) topics that are already merged.
start
repo start <BRANCH_NAME> [<PROJECT_LIST>]
Begins a new branch for development, starting from the revision specified in the manifest.
- The
<BRANCH_NAME>argument should provide a short description of the change you are trying to make to the projects.If you don't know, consider using the name default. - The
<PROJECT_LIST>specifies which projects will participate in this topic branch.
Note: "." is a useful shorthand for the project in the current working directory.
status
repo status [<PROJECT_LIST>]
Compares the working tree to the staging area (index) and the most recent commit on this branch (HEAD) in each project specified. Displays a summary line for each file where there is a difference between these three states.
To see the status for only the current branch, run repo status. The status information will be listed by project. For each file in the project, a two-letter code is used:
repo status 显示当前工程的所有信息,如两列字母显示状态变化:如下:注意其中棕色字体。
project hardware/ti/omap4-aah/ branch xxxxxx
project hardware/ti/omap4xxx/ branch xxxxxx
project kernel/ branch xxxxxx
-m drivers/base/core.c
-m drivers/soc/qcom/Kconfig
-m drivers/soc/qcom/qdsp6v2/Makefile
-m drivers/soc/qcom/qdsp6v2/adsp-loader.c
-m include/linux/kern_levels.h
-m kernel/printk.c
-m lib/dynamic_debug.c
project libcore/ branch xxxxxx
project libnativehelper/ branch xxxxxx
project ndk/ branch xxxxxx
- In the first column, an uppercase letter indicates how the staging area differs from the last committed state.第一列的含义
| letter | meaning | description |
|---|---|---|
| - | no change | same in HEAD and index |
| A | added | not in HEAD, in index |
| M | modified | in HEAD, modified in index |
| D | deleted | in HEAD, not in index |
| R | renamed | not in HEAD, path changed in index |
| C | copied | not in HEAD, copied from another in index |
| T | mode changed | same content in HEAD and index, mode changed |
| U | unmerged | conflict between HEAD and index; resolution required |
- In the second column, a lowercase letter indicates how the working directory differs from the index.第二列的含义
| letter | meaning | description |
|---|---|---|
| - | new/unknown | not in index, in work tree |
| m | modified | in index, in work tree, modified |
| d | deleted | in index, not in work tree |
下面来处网络:
repo 复位清空所有本地修改
repo forall -c 'git reset --hard HEAD;git clean -df;git rebase --abort'
repo 官方教程的更多相关文章
- Unity性能优化(3)-官方教程Optimizing garbage collection in Unity games翻译
本文是Unity官方教程,性能优化系列的第三篇<Optimizing garbage collection in Unity games>的翻译. 相关文章: Unity性能优化(1)-官 ...
- Unity性能优化(4)-官方教程Optimizing graphics rendering in Unity games翻译
本文是Unity官方教程,性能优化系列的第四篇<Optimizing graphics rendering in Unity games>的翻译. 相关文章: Unity性能优化(1)-官 ...
- Unity性能优化(2)-官方教程Diagnosing performance problems using the Profiler window翻译
本文是Unity官方教程,性能优化系列的第二篇<Diagnosing performance problems using the Profiler window>的简单翻译. 相关文章: ...
- Unity性能优化(1)-官方教程The Profiler window翻译
本文是Unity官方教程,性能优化系列的第一篇<The Profiler window>的简单翻译. 相关文章: Unity性能优化(1)-官方教程The Profiler window翻 ...
- jeecg表单页面控件权限设置(请先看官方教程,如果能看懂就不用看这里了)
只是把看了官方教程后,觉得不清楚地方补充说明一下: 1. 2. 3. 4.用"jeecgDemoController.do?addorupdate"这个路径测试,不出意外现在应该可 ...
- [转]Google Guava官方教程(中文版)
Google Guava官方教程(中文版) http://ifeve.com/google-guava/
- Google Guava官方教程(中文版)
Google Guava官方教程(中文版) 原文链接 译文链接 译者: 沈义扬,罗立树,何一昕,武祖 校对:方腾飞 引言 Guava工程包含了若干被Google的 Java项目广泛依赖 的核心库, ...
- OpenGL官方教程——着色器语言概述
OpenGL官方教程——着色器语言概述 OpenGL官方教程——着色器语言概述 可编程图形硬件管线(流水线) 可编程顶点处理器 可编程几何处理器 可编程片元处理器 语言 可编程图形硬件管线(流水线) ...
- [苏飞开发助手V1.0测试版]官方教程与升级报告
[苏飞开发助手V1.0测试版]官方教程与升级报告导读部分----------------------------------------------------------------- ...
随机推荐
- ArrayList和LinkList区别
ArrayList和LinkList区别 前者是数组的数据结构,后者是链表的数据结构 前者应用于排序和查找,后者应用于插入删除
- PHP内核探索:哈希碰撞攻击是什么?
最近哈希表碰撞攻击(Hashtable collisions as DOS attack)的话题不断被提起,各种语言纷纷中招.本文结合PHP内核源码,聊一聊这种攻击的原理及实现. 哈希表碰撞攻击的基本 ...
- 夺命雷公狗---node.js---21之项目的构建在node+express+mongo的博客项目6之数据的遍历
首先还是来链接数据库,然后就查找,如下所示: /** * Created by leigood on 2016/8/31. */ var express = require('express'); v ...
- java web sql注入测试(1)---概念概述
在进行java web 测试时,经常会忽略的测试种类就是sql注入测试,这类缺陷造成的原因是开发技术在这方面欠缺的表现,虽然不常见,但一旦有这类缺陷,就很因此对运营的数据造成很多不必要的损失,所以,还 ...
- JAVA 集合List,数组,Set,Map,直接的相互转换
Java集合转换[List<-->数组.List<-->Set.数组<-->Set.Map-->Set.Map-->List] //List--> ...
- C++线性方程求解
介绍 程序SolveLinearEquations解决联立方程.该方案需要一个文本文件,其中包含输入和输出方程解决.这个项目是几年前我写在C#中http://www.codeproject.com/A ...
- ubuntu安装遇到的问题
检查磁盘发现严重错误 解决办法 进入ubuntu启动菜单,选中*ubuntu后按e进入启动项编辑模式,找到ro rootflags=sync把ro改成rw,再按F10启动 启动后打开终端termina ...
- linux设备驱动归纳总结(五):3.操作硬件——IO静态映射【转】
本文转载自:http://blog.chinaunix.net/uid-25014876-id-83299.html linux设备驱动归纳总结(五):3.操作硬件——IO静态映射 xxxxxxxxx ...
- 精通 JS正则表达式
一.正则表达式可以: 测试字符串的某个模式.例如,可以对一个输入字符串进行测试,看在该字符串是否存在一个电话号码模式或一个信用卡号码模式.这称为数据有效性验证 替换文本.可以在文档中使用一个正则表达式 ...
- android listview万能适配器
参考 Android 快速开发系列 打造万能的ListView GridView 适配器 Hongyang public class CommonViewHolder { private Con ...