blob: d7bcb92258f93fe186fd97c3b7052b1e7da10364 [file] [log] [blame] [view]
Skyler Kaufman991ae4d2011-04-07 12:30:41 -07001# Repo command reference #
2
3Repo usage takes the following form:
4
5 repo COMMAND OPTIONS
6
7Optional elements are shown in brackets [ ]. Once Repo is installed, you can get information about any command by running
8
9 repo help COMMAND
10
11Many 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:
12
13 repo sync [PROJECT0 PROJECT1 ... PROJECTN]
14 repo sync [/PATH/TO/PROJECT0 ... /PATH/TO/PROJECTN]
15
16[TOC]
17
18## init ##
19
20 $ repo init -u URL [OPTIONS]
21
22Installs 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.
23
24Options:
25
26* `-u`: specify a URL from which to retrieve a manifest repository. The common manifest can be found at `git://android.git.kernel.org/platform/manifest.git`
27
28* `-m`: select a manifest file within the repository. If no manifest name is selected, the default is default.xml.
29
30* `-b`: specify a revision, i.e., a particular manifest-branch.
31
32*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.*
33
34
35## sync ##
36
37 repo sync [PROJECT_LIST]
38
39Downloads 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.
40
41When you run `repo sync`, this is what happens:
42
43- If the project has never been synchronized, then `repo sync` is equivalent to `git clone`. All branches in the remote repository are copied to the local project directory.
44
45- If the project has already been synchronized once, then `repo sync` is equivalent to:
46
47 git remote update
48 git rebase origin/BRANCH
49
50 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.
51
52- 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.
53
54After a successful `repo sync`, the code in specified projects will be up to date with the code in the remote repository.
55
56Options:
57
58* `-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.
59
60* `-s`: sync to a known good build as specified by the manifest-server element in the current manifest.
61
62* `-f`: proceed with syncing other projects even if a project fails to sync.
63
64
65## upload ##
66
67 repo upload [PROJECT_LIST]
68
69For 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.
70
71After you select one or more branches, all commits on the selected branches are transmitted to Gerrit over an SSH connection.You will need to configure an SSH key to enable upload authorization. Visit [SSH Keys](http://review.source.android.com/Gerrit#settings,ssh-keys) within the user settings panel to register your public keys with Gerrit. To enable password-less uploads, consider using ssh-agent on your client system.
72
73When Gerrit receives the object data over its SSH 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.
74
75If you run repo upload without any arguments, it will search all the projects for changes to upload.
76
77To 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:
78
79- Make sure the updated branch is the currently checked out branch.
80
81- Use `repo upload --replace PROJECT` to open the change matching editor.
82
83- For each commit in the series, enter the Gerrit change ID inside the brackets:
84
85 # Replacing from branch foo
86 [ 3021 ] 35f2596c Refactor part of GetUploadableBranches to lookup one specific...
87 [ 2829 ] ec18b4ba Update proto client to support patch set replacments
88 [ 3022 ] c99883fe Teach 'repo upload --replace' how to add replacement patch se...
89 # Insert change numbers in the brackets to add a new patch set.
90 # To create a new change record, leave the brackets empty.
91
92After the upload is complete the changes will have an additional Patch Set.
93
94
95## diff ##
96
97 repo diff [PROJECT_LIST]
98
99Shows outstanding changes between commit and working tree using `git diff`.
100
101
102## download ##
103
104 repo download TARGET CHANGE
105
106Downloads the specified change from the review system and makes it available in your project's local working directory.
107
108For example, to download [change 1241](http://review.source.android.com/1241) into your platform/frameworks/base directory:
109
110 $ repo download platform/frameworks/base 1241
111
112A `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`.
113
114*Note: There is a slight mirroring lag between when a change is visible on the web in [Gerrit](http://review.source.android.com) and when `repo download` will be able to find it, because changes are actually downloaded off the git://android.git.kernel.org/ mirror farm. Hence there will always be a lag of approximately 5 minutes before Gerrit pushes newly uploaded changes out to the mirror farm.*
115
116
117## forall ##
118
119 repo forall [PROJECT_LIST] -c COMMAND
120
121Executes the given shell command in each project. The following additional environment variables are made available by `repo forall`:
122
123* `REPO_PROJECT` is set to the unique name of the project.
124
125* `REPO_PATH` is the path relative to the root of the client.
126
127* `REPO_REMOTE` is the name of the remote sstem from the manifest.
128
129* `REPO_LREV` is 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.
130
131* `REPO_RREV` is the name of the revision from the manifest, exactly as written in the manifest.
132
133Options:
134
135* `-c`: command and arguments to execute. The command is evaluated through `/bin/sh` and any arguments after it are passed through as shell positional parameters.
136
137* `-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.
138
139* `-v`: show messages the command writes to stderr.
140
141
142## prune ##
143
144 repo prune [PROJECT_LIST]
145
146Prunes (deletes) topics that are already merged.
147
148
149## start ##
150
151 repo start BRANCH_NAME [PROJECT_LIST]
152
153Begins a new branch for development, starting from the revision specified in the manifest.
154
155The `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.
156
157The `PROJECT_LIST` specifies which projects will participate in this topic branch.
158
159*Note: "." is a useful shorthand for the project in the current working directory.*
160
161
162## status ##
163
164 repo status [PROJECT_LIST]
165
166Compares 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.
167
168To 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:
169
170In the first column, an uppercase letter indicates how the staging area differs from the last committed state.
171
172letter | meaning | description
173-------|----------------|-------------------------
174- | no change | same in HEAD and index
175A | added | not in HEAD, in index
176M | modified | in HEAD, modified in index
177D | deleted | in HEAD, not in index
178R | renamed | not in HEAD, path changed in index
179C | copied | not in HEAD, copied from another in index
180T | mode changed | same content in HEAD and index, mode changed
181U | unmerged | conflict between HEAD and index; resolution required
182
183In the second column, a lowercase letter indicates how the working directory differs from the index.
184
185letter | meaning | description
186-------|----------------|----------------------------
187- | new/unknown | not in index, in work tree
188m | modified | in index, in work tree, modified
189d | deleted | in index, not in work tree
190
191