Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
repo
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
YongjieWang
repo
Commits
58ca062a
Commit
58ca062a
authored
Jul 01, 2016
by
Matthias Putz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update: google git-repo v1.12.33
parent
f2235e73
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
148 additions
and
72 deletions
+148
-72
SUBMITTING_PATCHES
SUBMITTING_PATCHES
+29
-1
manifest-format.txt
docs/manifest-format.txt
+8
-8
git_command.py
git_command.py
+3
-0
project.py
project.py
+13
-7
repo
repo
+59
-45
forall.py
subcmds/forall.py
+4
-2
init.py
subcmds/init.py
+2
-2
rebase.py
subcmds/rebase.py
+9
-0
start.py
subcmds/start.py
+12
-5
sync.py
subcmds/sync.py
+9
-2
No files found.
SUBMITTING_PATCHES
View file @
58ca062a
...
...
@@ -4,7 +4,9 @@ Short Version:
- Provide a meaningful commit message.
- Check for coding errors with pylint
- Make sure all code is under the Apache License, 2.0.
- Publish your changes for review:
- Publish your changes for review.
- Make corrections if requested.
- Verify your changes on gerrit so they can be submitted.
git push https://gerrit-review.googlesource.com/git-repo HEAD:refs/for/master
...
...
@@ -75,6 +77,17 @@ Ensure you have obtained an HTTP password to authenticate:
https://gerrit-review.googlesource.com/new-password
Ensure that you have the local commit hook installed to automatically
add a ChangeId to your commits:
curl -Lo `git rev-parse --git-dir`/hooks/commit-msg https://gerrit-review.googlesource.com/tools/hooks/commit-msg
chmod +x `git rev-parse --git-dir`/hooks/commit-msg
If you have already committed your changes you will need to amend the commit
to get the ChangeId added.
git commit --amend
Push your patches over HTTPS to the review server, possibly through
a remembered remote to make this easier in the future:
...
...
@@ -85,3 +98,18 @@ a remembered remote to make this easier in the future:
You will be automatically emailed a copy of your commits, and any
comments made by the project maintainers.
(5) Make changes if requested
The project maintainer who reviews your changes might request changes to your
commit. If you make the requested changes you will need to amend your commit
and push it to the review server again.
(6) Verify your changes on gerrit
After you receive a Code-Review+2 from the maintainer, select the Verified
button on the gerrit page for the change. This verifies that you have tested
your changes and notifies the maintainer that they are ready to be submitted.
The maintainer will then submit your changes to the repository.
docs/manifest-format.txt
View file @
58ca062a
...
...
@@ -47,12 +47,12 @@ following DTD:
<!ATTLIST default sync-s CDATA #IMPLIED>
<!ELEMENT manifest-server (EMPTY)>
<!ATTLIST
url
CDATA #REQUIRED>
<!ATTLIST
manifest-server url
CDATA #REQUIRED>
<!ELEMENT project (annotation*,
project*,
copyfile
?
,
linkfile
?
)>
copyfile
*
,
linkfile
*
)>
<!ATTLIST project name CDATA #REQUIRED>
<!ATTLIST project path CDATA #IMPLIED>
<!ATTLIST project remote IDREF #IMPLIED>
...
...
@@ -71,14 +71,14 @@ following DTD:
<!ATTLIST annotation keep CDATA "true">
<!ELEMENT copyfile (EMPTY)>
<!ATTLIST
src value
CDATA #REQUIRED>
<!ATTLIST
dest value
CDATA #REQUIRED>
<!ATTLIST
copyfile src
CDATA #REQUIRED>
<!ATTLIST
copyfile dest
CDATA #REQUIRED>
<!ELEMENT linkfile (EMPTY)>
<!ATTLIST
src value
CDATA #REQUIRED>
<!ATTLIST
dest value
CDATA #REQUIRED>
<!ATTLIST
linkfile src
CDATA #REQUIRED>
<!ATTLIST
linkfile dest
CDATA #REQUIRED>
<!ELEMENT extend-project>
<!ELEMENT extend-project
(EMPTY)
>
<!ATTLIST extend-project name CDATA #REQUIRED>
<!ATTLIST extend-project path CDATA #IMPLIED>
<!ATTLIST extend-project groups CDATA #IMPLIED>
...
...
git_command.py
View file @
58ca062a
...
...
@@ -169,6 +169,9 @@ class GitCommand(object):
if
p
is
not
None
:
s
=
p
+
' '
+
s
_setenv
(
env
,
'GIT_CONFIG_PARAMETERS'
,
s
)
if
'GIT_ALLOW_PROTOCOL'
not
in
env
:
_setenv
(
env
,
'GIT_ALLOW_PROTOCOL'
,
'file:git:http:https:ssh:persistent-http:persistent-https:sso:rpc'
)
if
project
:
if
not
cwd
:
...
...
project.py
View file @
58ca062a
...
...
@@ -253,7 +253,7 @@ class _LinkFile(object):
if
not
portable
.
os_path_islink
(
absDest
)
or
(
portable
.
os_path_realpath
(
absDest
)
!=
relSrc
):
try
:
# remove existing file first, since it might be read-only
if
os
.
path
.
exists
(
absDest
):
if
os
.
path
.
l
exists
(
absDest
):
os
.
remove
(
absDest
)
else
:
dest_dir
=
os
.
path
.
dirname
(
absDest
)
...
...
@@ -1115,7 +1115,8 @@ class Project(object):
clone_bundle
=
True
,
no_tags
=
False
,
archive
=
False
,
optimized_fetch
=
False
):
optimized_fetch
=
False
,
prune
=
False
):
"""Perform only the network IO portion of the sync process.
Local working directory/branch state is not affected.
"""
...
...
@@ -1186,7 +1187,7 @@ class Project(object):
if
(
need_to_fetch
and
not
self
.
_RemoteFetch
(
initial
=
is_new
,
quiet
=
quiet
,
alt_dir
=
alt_dir
,
current_branch_only
=
current_branch_only
,
no_tags
=
no_tags
)):
no_tags
=
no_tags
,
prune
=
prune
)):
return
False
if
self
.
worktree
:
...
...
@@ -1587,8 +1588,6 @@ class Project(object):
if
kill
:
old
=
self
.
bare_git
.
GetHead
()
if
old
is
None
:
old
=
'refs/heads/please_never_use_this_as_a_branch_name'
try
:
self
.
bare_git
.
DetachHead
(
rev
)
...
...
@@ -1600,7 +1599,10 @@ class Project(object):
capture_stderr
=
True
)
b
.
Wait
()
finally
:
self
.
bare_git
.
SetHead
(
old
)
if
ID_RE
.
match
(
old
):
self
.
bare_git
.
DetachHead
(
old
)
else
:
self
.
bare_git
.
SetHead
(
old
)
left
=
self
.
_allrefs
for
branch
in
kill
:
...
...
@@ -1800,7 +1802,8 @@ class Project(object):
initial
=
False
,
quiet
=
False
,
alt_dir
=
None
,
no_tags
=
False
):
no_tags
=
False
,
prune
=
False
):
is_sha1
=
False
tag_name
=
None
...
...
@@ -1913,6 +1916,9 @@ class Project(object):
else
:
cmd
.
append
(
'--tags'
)
if
prune
:
cmd
.
append
(
'--prune'
)
spec
=
[]
if
not
current_branch_only
:
# Fetch whole repo
...
...
repo
View file @
58ca062a
This diff is collapsed.
Click to expand it.
subcmds/forall.py
View file @
58ca062a
...
...
@@ -241,7 +241,8 @@ without iterating through the remaining projects.
rc
=
rc
or
errno
.
EINTR
except
Exception
as
e
:
# Catch any other exceptions raised
print
(
'Got an error, terminating the pool:
%
r'
%
e
,
print
(
'Got an error, terminating the pool:
%
s:
%
s'
%
(
type
(
e
)
.
__name__
,
e
),
file
=
sys
.
stderr
)
pool
.
terminate
()
rc
=
rc
or
getattr
(
e
,
'errno'
,
1
)
...
...
@@ -255,7 +256,8 @@ without iterating through the remaining projects.
try
:
project
=
self
.
_SerializeProject
(
p
)
except
Exception
as
e
:
print
(
'Project list error:
%
r'
%
e
,
print
(
'Project list error on project
%
s:
%
s:
%
s'
%
(
p
.
name
,
type
(
e
)
.
__name__
,
e
),
file
=
sys
.
stderr
)
return
except
KeyboardInterrupt
:
...
...
subcmds/init.py
View file @
58ca062a
...
...
@@ -179,7 +179,7 @@ to update the working directory files.
r
.
Save
()
groups
=
re
.
split
(
r'[,\s]+'
,
opt
.
groups
)
all_platforms
=
[
'linux'
,
'darwin'
]
all_platforms
=
[
'linux'
,
'darwin'
,
'windows'
]
platformize
=
lambda
x
:
'platform-'
+
x
if
opt
.
platform
==
'auto'
:
if
(
not
opt
.
mirror
and
...
...
@@ -188,7 +188,7 @@ to update the working directory files.
elif
opt
.
platform
==
'all'
:
groups
.
extend
(
map
(
platformize
,
all_platforms
))
elif
opt
.
platform
in
all_platforms
:
groups
.
ext
end
(
platformize
(
opt
.
platform
))
groups
.
app
end
(
platformize
(
opt
.
platform
))
elif
opt
.
platform
!=
'none'
:
print
(
'fatal: invalid platform flag'
,
file
=
sys
.
stderr
)
sys
.
exit
(
1
)
...
...
subcmds/rebase.py
View file @
58ca062a
...
...
@@ -54,6 +54,11 @@ branch but need to incorporate new upstream changes "underneath" them.
p
.
add_option
(
'--auto-stash'
,
dest
=
'auto_stash'
,
action
=
'store_true'
,
help
=
'Stash local modifications before starting'
)
p
.
add_option
(
'-m'
,
'--onto-manifest'
,
dest
=
'onto_manifest'
,
action
=
'store_true'
,
help
=
'Rebase onto the manifest version instead of upstream '
'HEAD. This helps to make sure the local tree stays '
'consistent if you previously synced to a manifest.'
)
def
Execute
(
self
,
opt
,
args
):
all_projects
=
self
.
GetProjects
(
args
)
...
...
@@ -106,6 +111,10 @@ branch but need to incorporate new upstream changes "underneath" them.
if
opt
.
interactive
:
args
.
append
(
"-i"
)
if
opt
.
onto_manifest
:
args
.
append
(
'--onto'
)
args
.
append
(
project
.
revisionExpr
)
args
.
append
(
upbranch
.
LocalMerge
)
print
(
'#
%
s: rebasing
%
s ->
%
s'
...
...
subcmds/start.py
View file @
58ca062a
...
...
@@ -57,10 +57,15 @@ revision specified in the manifest.
print
(
"error: at least one project must be specified"
,
file
=
sys
.
stderr
)
sys
.
exit
(
1
)
all_projects
=
self
.
GetProjects
(
projects
,
missing_ok
=
bool
(
self
.
gitc_manifest
))
# This must happen after we find all_projects, since GetProjects may need
# the local directory, which will disappear once we save the GITC manifest.
if
self
.
gitc_manifest
:
all
_projects
=
self
.
GetProjects
(
projects
,
manifest
=
self
.
gitc_manifest
,
missing_ok
=
True
)
for
project
in
all
_projects
:
gitc
_projects
=
self
.
GetProjects
(
projects
,
manifest
=
self
.
gitc_manifest
,
missing_ok
=
True
)
for
project
in
gitc
_projects
:
if
project
.
old_revision
:
project
.
already_synced
=
True
else
:
...
...
@@ -70,8 +75,10 @@ revision specified in the manifest.
# Save the GITC manifest.
gitc_utils
.
save_manifest
(
self
.
gitc_manifest
)
all_projects
=
self
.
GetProjects
(
projects
,
missing_ok
=
bool
(
self
.
gitc_manifest
))
# Make sure we have a valid CWD
if
not
os
.
path
.
exists
(
os
.
getcwd
()):
os
.
chdir
(
self
.
manifest
.
topdir
)
pm
=
Progress
(
'Starting
%
s'
%
nb
,
len
(
all_projects
))
for
project
in
all_projects
:
pm
.
update
()
...
...
subcmds/sync.py
View file @
58ca062a
...
...
@@ -153,6 +153,9 @@ The --optimized-fetch option can be used to only fetch projects that
are fixed to a sha1 revision if the sha1 revision does not already
exist locally.
The --prune option can be used to remove any refs that no longer
exist on the remote.
SSH Connections
---------------
...
...
@@ -236,6 +239,8 @@ later is required to fix a server side protocol bug.
p
.
add_option
(
'--optimized-fetch'
,
dest
=
'optimized_fetch'
,
action
=
'store_true'
,
help
=
'only fetch projects fixed to sha1 if revision does not exist locally'
)
p
.
add_option
(
'--prune'
,
dest
=
'prune'
,
action
=
'store_true'
,
help
=
'delete refs that no longer exist on the remote'
)
if
show_smart
:
p
.
add_option
(
'-s'
,
'--smart-sync'
,
dest
=
'smart_sync'
,
action
=
'store_true'
,
...
...
@@ -307,7 +312,8 @@ later is required to fix a server side protocol bug.
force_sync
=
opt
.
force_sync
,
clone_bundle
=
not
opt
.
no_clone_bundle
,
no_tags
=
opt
.
no_tags
,
archive
=
self
.
manifest
.
IsArchive
,
optimized_fetch
=
opt
.
optimized_fetch
)
optimized_fetch
=
opt
.
optimized_fetch
,
prune
=
opt
.
prune
)
self
.
_fetch_times
.
Set
(
project
,
time
.
time
()
-
start
)
# Lock around all the rest of the code, since printing, updating a set
...
...
@@ -316,6 +322,7 @@ later is required to fix a server side protocol bug.
did_lock
=
True
if
not
success
:
err_event
.
set
()
print
(
'error: Cannot fetch
%
s'
%
project
.
name
,
file
=
sys
.
stderr
)
if
opt
.
force_broken
:
print
(
'warn: --force-broken, continuing to sync'
,
...
...
@@ -326,7 +333,7 @@ later is required to fix a server side protocol bug.
fetched
.
add
(
project
.
gitdir
)
pm
.
update
()
except
_FetchError
:
err_event
.
set
()
pass
except
Exception
as
e
:
print
(
'error: Cannot fetch
%
s (
%
s:
%
s)'
\
%
(
project
.
name
,
type
(
e
)
.
__name__
,
str
(
e
)),
file
=
sys
.
stderr
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment