mirror of
https://gerrit.googlesource.com/git-repo
synced 2025-06-30 20:17:08 +00:00
Compare commits
16 Commits
Author | SHA1 | Date | |
---|---|---|---|
5acde75e5d | |||
d67872d2f4 | |||
e9d6b611c5 | |||
c3d2f2b76f | |||
cd7c5deca0 | |||
e02ac0af2e | |||
898e12a2d9 | |||
ae0a36c9a5 | |||
76abcc1d1e | |||
d315382572 | |||
43bda84362 | |||
9b017dab46 | |||
e9dc3b3368 | |||
c9571423f8 | |||
34fb20f67c | |||
ecff4f17b0 |
@ -5,7 +5,7 @@ Short Version:
|
|||||||
- Make sure all code is under the Apache License, 2.0.
|
- Make sure all code is under the Apache License, 2.0.
|
||||||
- Publish your changes for review:
|
- Publish your changes for review:
|
||||||
|
|
||||||
git push ssh://review.source.android.com:29418/tools/repo.git HEAD:refs/for/master
|
git push https://gerrit-review.googlesource.com/git-repo HEAD:refs/for/maint
|
||||||
|
|
||||||
|
|
||||||
Long Version:
|
Long Version:
|
||||||
@ -55,24 +55,23 @@ Do not email your patches to anyone.
|
|||||||
|
|
||||||
Instead, login to the Gerrit Code Review tool at:
|
Instead, login to the Gerrit Code Review tool at:
|
||||||
|
|
||||||
https://review.source.android.com/
|
https://gerrit-review.googlesource.com/
|
||||||
|
|
||||||
Ensure you have completed one of the necessary contributor
|
Ensure you have completed one of the necessary contributor
|
||||||
agreements, providing documentation to the project maintainers that
|
agreements, providing documentation to the project maintainers that
|
||||||
they have right to redistribute your work under the Apache License:
|
they have right to redistribute your work under the Apache License:
|
||||||
|
|
||||||
https://review.source.android.com/#settings,agreements
|
https://gerrit-review.googlesource.com/#/settings/agreements
|
||||||
|
|
||||||
Ensure you have registered one or more SSH public keys, so you can
|
Ensure you have obtained an HTTP password to authenticate:
|
||||||
push your commits directly over SSH:
|
|
||||||
|
|
||||||
https://review.source.android.com/#settings,ssh-keys
|
https://gerrit-review.googlesource.com/new-password
|
||||||
|
|
||||||
Push your patches over SSH to the review server, possibly through
|
Push your patches over HTTPS to the review server, possibly through
|
||||||
a remembered remote to make this easier in the future:
|
a remembered remote to make this easier in the future:
|
||||||
|
|
||||||
git config remote.review.url ssh://review.source.android.com:29418/tools/repo.git
|
git config remote.review.url https://gerrit-review.googlesource.com/git-repo
|
||||||
git config remote.review.push HEAD:refs/for/master
|
git config remote.review.push HEAD:refs/for/maint
|
||||||
|
|
||||||
git push review
|
git push review
|
||||||
|
|
||||||
|
13
command.py
13
command.py
@ -15,9 +15,11 @@
|
|||||||
|
|
||||||
import os
|
import os
|
||||||
import optparse
|
import optparse
|
||||||
|
import re
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
from error import NoSuchProjectError
|
from error import NoSuchProjectError
|
||||||
|
from error import InvalidProjectGroupsError
|
||||||
|
|
||||||
class Command(object):
|
class Command(object):
|
||||||
"""Base class for any command line action in repo.
|
"""Base class for any command line action in repo.
|
||||||
@ -63,9 +65,16 @@ class Command(object):
|
|||||||
all = self.manifest.projects
|
all = self.manifest.projects
|
||||||
result = []
|
result = []
|
||||||
|
|
||||||
|
mp = self.manifest.manifestProject
|
||||||
|
|
||||||
|
groups = mp.config.GetString('manifest.groups')
|
||||||
|
if groups:
|
||||||
|
groups = re.split('[,\s]+', groups)
|
||||||
|
|
||||||
if not args:
|
if not args:
|
||||||
for project in all.values():
|
for project in all.values():
|
||||||
if missing_ok or project.Exists:
|
if ((missing_ok or project.Exists) and
|
||||||
|
project.MatchesGroups(groups)):
|
||||||
result.append(project)
|
result.append(project)
|
||||||
else:
|
else:
|
||||||
by_path = None
|
by_path = None
|
||||||
@ -102,6 +111,8 @@ class Command(object):
|
|||||||
raise NoSuchProjectError(arg)
|
raise NoSuchProjectError(arg)
|
||||||
if not missing_ok and not project.Exists:
|
if not missing_ok and not project.Exists:
|
||||||
raise NoSuchProjectError(arg)
|
raise NoSuchProjectError(arg)
|
||||||
|
if not project.MatchesGroups(groups):
|
||||||
|
raise InvalidProjectGroupsError(arg)
|
||||||
|
|
||||||
result.append(project)
|
result.append(project)
|
||||||
|
|
||||||
|
@ -48,6 +48,7 @@ following DTD:
|
|||||||
<!ATTLIST project path CDATA #IMPLIED>
|
<!ATTLIST project path CDATA #IMPLIED>
|
||||||
<!ATTLIST project remote IDREF #IMPLIED>
|
<!ATTLIST project remote IDREF #IMPLIED>
|
||||||
<!ATTLIST project revision CDATA #IMPLIED>
|
<!ATTLIST project revision CDATA #IMPLIED>
|
||||||
|
<!ATTLIST project groups CDATA #IMPLIED>
|
||||||
|
|
||||||
<!ELEMENT remove-project (EMPTY)>
|
<!ELEMENT remove-project (EMPTY)>
|
||||||
<!ATTLIST remove-project name CDATA #REQUIRED>
|
<!ATTLIST remove-project name CDATA #REQUIRED>
|
||||||
@ -158,6 +159,10 @@ Tags and/or explicit SHA-1s should work in theory, but have not
|
|||||||
been extensively tested. If not supplied the revision given by
|
been extensively tested. If not supplied the revision given by
|
||||||
the default element is used.
|
the default element is used.
|
||||||
|
|
||||||
|
Attribute `groups`: List of groups to which this project belongs,
|
||||||
|
whitespace or comma separated. All projects are part of the group
|
||||||
|
"default" unless "-default" is specified in the list of groups.
|
||||||
|
|
||||||
Element remove-project
|
Element remove-project
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
12
error.py
12
error.py
@ -77,6 +77,18 @@ class NoSuchProjectError(Exception):
|
|||||||
return 'in current directory'
|
return 'in current directory'
|
||||||
return self.name
|
return self.name
|
||||||
|
|
||||||
|
|
||||||
|
class InvalidProjectGroupsError(Exception):
|
||||||
|
"""A specified project is not suitable for the specified groups
|
||||||
|
"""
|
||||||
|
def __init__(self, name=None):
|
||||||
|
self.name = name
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
if self.Name is None:
|
||||||
|
return 'in current directory'
|
||||||
|
return self.name
|
||||||
|
|
||||||
class RepoChangedException(Exception):
|
class RepoChangedException(Exception):
|
||||||
"""Thrown if 'repo sync' results in repo updating its internal
|
"""Thrown if 'repo sync' results in repo updating its internal
|
||||||
repo or manifest repositories. In this special case we must
|
repo or manifest repositories. In this special case we must
|
||||||
|
@ -488,7 +488,7 @@ def close_ssh():
|
|||||||
_master_keys_lock = None
|
_master_keys_lock = None
|
||||||
|
|
||||||
URI_SCP = re.compile(r'^([^@:]*@?[^:/]{1,}):')
|
URI_SCP = re.compile(r'^([^@:]*@?[^:/]{1,}):')
|
||||||
URI_ALL = re.compile(r'^([a-z][a-z+]*)://([^@/]*@?[^/]*)/')
|
URI_ALL = re.compile(r'^([a-z][a-z+-]*)://([^@/]*@?[^/]*)/')
|
||||||
|
|
||||||
def GetSchemeFromUrl(url):
|
def GetSchemeFromUrl(url):
|
||||||
m = URI_ALL.match(url)
|
m = URI_ALL.match(url)
|
||||||
@ -527,7 +527,7 @@ class Remote(object):
|
|||||||
self.projectname = self._Get('projectname')
|
self.projectname = self._Get('projectname')
|
||||||
self.fetch = map(lambda x: RefSpec.FromString(x),
|
self.fetch = map(lambda x: RefSpec.FromString(x),
|
||||||
self._Get('fetch', all=True))
|
self._Get('fetch', all=True))
|
||||||
self._review_protocol = None
|
self._review_url = None
|
||||||
|
|
||||||
def _InsteadOf(self):
|
def _InsteadOf(self):
|
||||||
globCfg = GitConfig.ForUser()
|
globCfg = GitConfig.ForUser()
|
||||||
@ -554,9 +554,8 @@ class Remote(object):
|
|||||||
connectionUrl = self._InsteadOf()
|
connectionUrl = self._InsteadOf()
|
||||||
return _preconnect(connectionUrl)
|
return _preconnect(connectionUrl)
|
||||||
|
|
||||||
@property
|
def ReviewUrl(self, userEmail):
|
||||||
def ReviewProtocol(self):
|
if self._review_url is None:
|
||||||
if self._review_protocol is None:
|
|
||||||
if self.review is None:
|
if self.review is None:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
@ -565,67 +564,47 @@ class Remote(object):
|
|||||||
u = 'http://%s' % u
|
u = 'http://%s' % u
|
||||||
if u.endswith('/Gerrit'):
|
if u.endswith('/Gerrit'):
|
||||||
u = u[:len(u) - len('/Gerrit')]
|
u = u[:len(u) - len('/Gerrit')]
|
||||||
if not u.endswith('/ssh_info'):
|
if u.endswith('/ssh_info'):
|
||||||
if not u.endswith('/'):
|
u = u[:len(u) - len('/ssh_info')]
|
||||||
u += '/'
|
if not u.endswith('/'):
|
||||||
u += 'ssh_info'
|
u += '/'
|
||||||
|
http_url = u
|
||||||
|
|
||||||
if u in REVIEW_CACHE:
|
if u in REVIEW_CACHE:
|
||||||
info = REVIEW_CACHE[u]
|
self._review_url = REVIEW_CACHE[u]
|
||||||
self._review_protocol = info[0]
|
|
||||||
self._review_host = info[1]
|
|
||||||
self._review_port = info[2]
|
|
||||||
elif 'REPO_HOST_PORT_INFO' in os.environ:
|
elif 'REPO_HOST_PORT_INFO' in os.environ:
|
||||||
info = os.environ['REPO_HOST_PORT_INFO']
|
host, port = os.environ['REPO_HOST_PORT_INFO'].split()
|
||||||
self._review_protocol = 'ssh'
|
self._review_url = self._SshReviewUrl(userEmail, host, port)
|
||||||
self._review_host = info.split(" ")[0]
|
REVIEW_CACHE[u] = self._review_url
|
||||||
self._review_port = info.split(" ")[1]
|
|
||||||
|
|
||||||
REVIEW_CACHE[u] = (
|
|
||||||
self._review_protocol,
|
|
||||||
self._review_host,
|
|
||||||
self._review_port)
|
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
info = urllib2.urlopen(u).read()
|
info_url = u + 'ssh_info'
|
||||||
if info == 'NOT_AVAILABLE':
|
info = urllib2.urlopen(info_url).read()
|
||||||
raise UploadError('%s: SSH disabled' % self.review)
|
|
||||||
if '<' in info:
|
if '<' in info:
|
||||||
# Assume the server gave us some sort of HTML
|
# Assume the server gave us some sort of HTML
|
||||||
# response back, like maybe a login page.
|
# response back, like maybe a login page.
|
||||||
#
|
#
|
||||||
raise UploadError('%s: Cannot parse response' % u)
|
raise UploadError('%s: Cannot parse response' % info_url)
|
||||||
|
|
||||||
self._review_protocol = 'ssh'
|
if info == 'NOT_AVAILABLE':
|
||||||
self._review_host = info.split(" ")[0]
|
# Assume HTTP if SSH is not enabled.
|
||||||
self._review_port = info.split(" ")[1]
|
self._review_url = http_url + 'p/'
|
||||||
except urllib2.HTTPError, e:
|
|
||||||
if e.code == 404:
|
|
||||||
self._review_protocol = 'http-post'
|
|
||||||
self._review_host = None
|
|
||||||
self._review_port = None
|
|
||||||
else:
|
else:
|
||||||
raise UploadError('Upload over SSH unavailable')
|
host, port = info.split()
|
||||||
|
self._review_url = self._SshReviewUrl(userEmail, host, port)
|
||||||
|
except urllib2.HTTPError, e:
|
||||||
|
raise UploadError('%s: %s' % (self.review, str(e)))
|
||||||
except urllib2.URLError, e:
|
except urllib2.URLError, e:
|
||||||
raise UploadError('%s: %s' % (self.review, str(e)))
|
raise UploadError('%s: %s' % (self.review, str(e)))
|
||||||
|
|
||||||
REVIEW_CACHE[u] = (
|
REVIEW_CACHE[u] = self._review_url
|
||||||
self._review_protocol,
|
return self._review_url + self.projectname
|
||||||
self._review_host,
|
|
||||||
self._review_port)
|
|
||||||
return self._review_protocol
|
|
||||||
|
|
||||||
def SshReviewUrl(self, userEmail):
|
def _SshReviewUrl(self, userEmail, host, port):
|
||||||
if self.ReviewProtocol != 'ssh':
|
|
||||||
return None
|
|
||||||
username = self._config.GetString('review.%s.username' % self.review)
|
username = self._config.GetString('review.%s.username' % self.review)
|
||||||
if username is None:
|
if username is None:
|
||||||
username = userEmail.split("@")[0]
|
username = userEmail.split('@')[0]
|
||||||
return 'ssh://%s@%s:%s/%s' % (
|
return 'ssh://%s@%s:%s/' % (username, host, port)
|
||||||
username,
|
|
||||||
self._review_host,
|
|
||||||
self._review_port,
|
|
||||||
self.projectname)
|
|
||||||
|
|
||||||
def ToLocal(self, rev):
|
def ToLocal(self, rev):
|
||||||
"""Convert a remote revision string to something we have locally.
|
"""Convert a remote revision string to something we have locally.
|
||||||
|
27
main.py
27
main.py
@ -36,6 +36,7 @@ from git_config import init_ssh, close_ssh
|
|||||||
from command import InteractiveCommand
|
from command import InteractiveCommand
|
||||||
from command import MirrorSafeCommand
|
from command import MirrorSafeCommand
|
||||||
from command import PagedCommand
|
from command import PagedCommand
|
||||||
|
from subcmds.version import Version
|
||||||
from editor import Editor
|
from editor import Editor
|
||||||
from error import DownloadError
|
from error import DownloadError
|
||||||
from error import ManifestInvalidRevisionError
|
from error import ManifestInvalidRevisionError
|
||||||
@ -294,6 +295,24 @@ class _BasicAuthHandler(urllib2.HTTPBasicAuthHandler):
|
|||||||
self.retried = 0
|
self.retried = 0
|
||||||
raise
|
raise
|
||||||
|
|
||||||
|
class _DigestAuthHandler(urllib2.HTTPDigestAuthHandler):
|
||||||
|
def http_error_auth_reqed(self, auth_header, host, req, headers):
|
||||||
|
try:
|
||||||
|
old_add_header = req.add_header
|
||||||
|
def _add_header(name, val):
|
||||||
|
val = val.replace('\n', '')
|
||||||
|
old_add_header(name, val)
|
||||||
|
req.add_header = _add_header
|
||||||
|
return urllib2.AbstractDigestAuthHandler.http_error_auth_reqed(
|
||||||
|
self, auth_header, host, req, headers)
|
||||||
|
except:
|
||||||
|
reset = getattr(self, 'reset_retry_count', None)
|
||||||
|
if reset is not None:
|
||||||
|
reset()
|
||||||
|
elif getattr(self, 'retried', None):
|
||||||
|
self.retried = 0
|
||||||
|
raise
|
||||||
|
|
||||||
def init_http():
|
def init_http():
|
||||||
handlers = [_UserAgentHandler()]
|
handlers = [_UserAgentHandler()]
|
||||||
|
|
||||||
@ -302,13 +321,14 @@ def init_http():
|
|||||||
n = netrc.netrc()
|
n = netrc.netrc()
|
||||||
for host in n.hosts:
|
for host in n.hosts:
|
||||||
p = n.hosts[host]
|
p = n.hosts[host]
|
||||||
mgr.add_password(None, 'http://%s/' % host, p[0], p[2])
|
mgr.add_password(p[1], 'http://%s/' % host, p[0], p[2])
|
||||||
mgr.add_password(None, 'https://%s/' % host, p[0], p[2])
|
mgr.add_password(p[1], 'https://%s/' % host, p[0], p[2])
|
||||||
except netrc.NetrcParseError:
|
except netrc.NetrcParseError:
|
||||||
pass
|
pass
|
||||||
except IOError:
|
except IOError:
|
||||||
pass
|
pass
|
||||||
handlers.append(_BasicAuthHandler(mgr))
|
handlers.append(_BasicAuthHandler(mgr))
|
||||||
|
handlers.append(_DigestAuthHandler(mgr))
|
||||||
|
|
||||||
if 'http_proxy' in os.environ:
|
if 'http_proxy' in os.environ:
|
||||||
url = os.environ['http_proxy']
|
url = os.environ['http_proxy']
|
||||||
@ -334,6 +354,9 @@ def _Main(argv):
|
|||||||
_CheckWrapperVersion(opt.wrapper_version, opt.wrapper_path)
|
_CheckWrapperVersion(opt.wrapper_version, opt.wrapper_path)
|
||||||
_CheckRepoDir(opt.repodir)
|
_CheckRepoDir(opt.repodir)
|
||||||
|
|
||||||
|
Version.wrapper_version = opt.wrapper_version
|
||||||
|
Version.wrapper_path = opt.wrapper_path
|
||||||
|
|
||||||
repo = _Repo(opt.repodir)
|
repo = _Repo(opt.repodir)
|
||||||
try:
|
try:
|
||||||
try:
|
try:
|
||||||
|
@ -119,6 +119,12 @@ class XmlManifest(object):
|
|||||||
def Save(self, fd, peg_rev=False):
|
def Save(self, fd, peg_rev=False):
|
||||||
"""Write the current manifest out to the given file descriptor.
|
"""Write the current manifest out to the given file descriptor.
|
||||||
"""
|
"""
|
||||||
|
mp = self.manifestProject
|
||||||
|
|
||||||
|
groups = mp.config.GetString('manifest.groups')
|
||||||
|
if groups:
|
||||||
|
groups = re.split('[,\s]+', groups)
|
||||||
|
|
||||||
doc = xml.dom.minidom.Document()
|
doc = xml.dom.minidom.Document()
|
||||||
root = doc.createElement('manifest')
|
root = doc.createElement('manifest')
|
||||||
doc.appendChild(root)
|
doc.appendChild(root)
|
||||||
@ -167,6 +173,10 @@ class XmlManifest(object):
|
|||||||
|
|
||||||
for p in sort_projects:
|
for p in sort_projects:
|
||||||
p = self.projects[p]
|
p = self.projects[p]
|
||||||
|
|
||||||
|
if not p.MatchesGroups(groups):
|
||||||
|
continue
|
||||||
|
|
||||||
e = doc.createElement('project')
|
e = doc.createElement('project')
|
||||||
root.appendChild(e)
|
root.appendChild(e)
|
||||||
e.setAttribute('name', p.name)
|
e.setAttribute('name', p.name)
|
||||||
@ -190,6 +200,9 @@ class XmlManifest(object):
|
|||||||
ce.setAttribute('dest', c.dest)
|
ce.setAttribute('dest', c.dest)
|
||||||
e.appendChild(ce)
|
e.appendChild(ce)
|
||||||
|
|
||||||
|
if p.groups:
|
||||||
|
e.setAttribute('groups', ','.join(p.groups))
|
||||||
|
|
||||||
if self._repo_hooks_project:
|
if self._repo_hooks_project:
|
||||||
root.appendChild(doc.createTextNode(''))
|
root.appendChild(doc.createTextNode(''))
|
||||||
e = doc.createElement('repo-hooks')
|
e = doc.createElement('repo-hooks')
|
||||||
@ -228,11 +241,7 @@ class XmlManifest(object):
|
|||||||
@property
|
@property
|
||||||
def manifest_server(self):
|
def manifest_server(self):
|
||||||
self._Load()
|
self._Load()
|
||||||
|
return self._manifest_server
|
||||||
if self._manifest_server:
|
|
||||||
return self._manifest_server
|
|
||||||
|
|
||||||
return self.manifestProject.config.GetString('repo.manifest-server')
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def IsMirror(self):
|
def IsMirror(self):
|
||||||
@ -502,6 +511,18 @@ class XmlManifest(object):
|
|||||||
"project %s path cannot be absolute in %s" % \
|
"project %s path cannot be absolute in %s" % \
|
||||||
(name, self.manifestFile)
|
(name, self.manifestFile)
|
||||||
|
|
||||||
|
rebase = node.getAttribute('rebase')
|
||||||
|
if not rebase:
|
||||||
|
rebase = True
|
||||||
|
else:
|
||||||
|
rebase = rebase.lower() in ("yes", "true", "1")
|
||||||
|
|
||||||
|
groups = node.getAttribute('groups')
|
||||||
|
if groups:
|
||||||
|
groups = re.split('[,\s]+', groups)
|
||||||
|
else:
|
||||||
|
groups = None
|
||||||
|
|
||||||
if self.IsMirror:
|
if self.IsMirror:
|
||||||
relpath = None
|
relpath = None
|
||||||
worktree = None
|
worktree = None
|
||||||
@ -517,7 +538,9 @@ class XmlManifest(object):
|
|||||||
worktree = worktree,
|
worktree = worktree,
|
||||||
relpath = path,
|
relpath = path,
|
||||||
revisionExpr = revisionExpr,
|
revisionExpr = revisionExpr,
|
||||||
revisionId = None)
|
revisionId = None,
|
||||||
|
rebase = rebase,
|
||||||
|
groups = groups)
|
||||||
|
|
||||||
for n in node.childNodes:
|
for n in node.childNodes:
|
||||||
if n.nodeName == 'copyfile':
|
if n.nodeName == 'copyfile':
|
||||||
|
109
project.py
109
project.py
@ -503,7 +503,9 @@ class Project(object):
|
|||||||
worktree,
|
worktree,
|
||||||
relpath,
|
relpath,
|
||||||
revisionExpr,
|
revisionExpr,
|
||||||
revisionId):
|
revisionId,
|
||||||
|
rebase = True,
|
||||||
|
groups = None):
|
||||||
self.manifest = manifest
|
self.manifest = manifest
|
||||||
self.name = name
|
self.name = name
|
||||||
self.remote = remote
|
self.remote = remote
|
||||||
@ -522,6 +524,9 @@ class Project(object):
|
|||||||
else:
|
else:
|
||||||
self.revisionId = revisionId
|
self.revisionId = revisionId
|
||||||
|
|
||||||
|
self.rebase = rebase
|
||||||
|
self.groups = groups
|
||||||
|
|
||||||
self.snapshots = {}
|
self.snapshots = {}
|
||||||
self.copyfiles = []
|
self.copyfiles = []
|
||||||
self.config = GitConfig.ForRepository(
|
self.config = GitConfig.ForRepository(
|
||||||
@ -642,6 +647,45 @@ class Project(object):
|
|||||||
|
|
||||||
return heads
|
return heads
|
||||||
|
|
||||||
|
def MatchesGroups(self, manifest_groups):
|
||||||
|
"""Returns true if the manifest groups specified at init should cause
|
||||||
|
this project to be synced.
|
||||||
|
Prefixing a manifest group with "-" inverts the meaning of a group.
|
||||||
|
All projects are implicitly labelled with "default" unless they are
|
||||||
|
explicitly labelled "-default".
|
||||||
|
If any non-inverted manifest groups are specified, the default label
|
||||||
|
is ignored.
|
||||||
|
Specifying only inverted groups implies "default".
|
||||||
|
"""
|
||||||
|
project_groups = self.groups
|
||||||
|
if not manifest_groups:
|
||||||
|
return not project_groups or not "-default" in project_groups
|
||||||
|
|
||||||
|
if not project_groups:
|
||||||
|
project_groups = ["default"]
|
||||||
|
elif not ("default" in project_groups or "-default" in project_groups):
|
||||||
|
project_groups.append("default")
|
||||||
|
|
||||||
|
plus_groups = [x for x in manifest_groups if not x.startswith("-")]
|
||||||
|
minus_groups = [x[1:] for x in manifest_groups if x.startswith("-")]
|
||||||
|
|
||||||
|
if not plus_groups:
|
||||||
|
plus_groups.append("default")
|
||||||
|
|
||||||
|
for group in minus_groups:
|
||||||
|
if group in project_groups:
|
||||||
|
# project was excluded by -group
|
||||||
|
return False
|
||||||
|
|
||||||
|
for group in plus_groups:
|
||||||
|
if group in project_groups:
|
||||||
|
# project was included by group
|
||||||
|
return True
|
||||||
|
|
||||||
|
# groups were specified that did not include this project
|
||||||
|
if plus_groups:
|
||||||
|
return False
|
||||||
|
return True
|
||||||
|
|
||||||
## Status Display ##
|
## Status Display ##
|
||||||
|
|
||||||
@ -688,7 +732,7 @@ class Project(object):
|
|||||||
di = self.work_git.DiffZ('diff-index', '-M', '--cached', HEAD)
|
di = self.work_git.DiffZ('diff-index', '-M', '--cached', HEAD)
|
||||||
df = self.work_git.DiffZ('diff-files')
|
df = self.work_git.DiffZ('diff-files')
|
||||||
do = self.work_git.LsOthers()
|
do = self.work_git.LsOthers()
|
||||||
if not rb and not di and not df and not do:
|
if not rb and not di and not df and not do and not self.CurrentBranch:
|
||||||
return 'CLEAN'
|
return 'CLEAN'
|
||||||
|
|
||||||
out = StatusColoring(self.config)
|
out = StatusColoring(self.config)
|
||||||
@ -746,7 +790,7 @@ class Project(object):
|
|||||||
|
|
||||||
return 'DIRTY'
|
return 'DIRTY'
|
||||||
|
|
||||||
def PrintWorkTreeDiff(self):
|
def PrintWorkTreeDiff(self, absolute_paths=False):
|
||||||
"""Prints the status of the repository to stdout.
|
"""Prints the status of the repository to stdout.
|
||||||
"""
|
"""
|
||||||
out = DiffColoring(self.config)
|
out = DiffColoring(self.config)
|
||||||
@ -754,6 +798,9 @@ class Project(object):
|
|||||||
if out.is_on:
|
if out.is_on:
|
||||||
cmd.append('--color')
|
cmd.append('--color')
|
||||||
cmd.append(HEAD)
|
cmd.append(HEAD)
|
||||||
|
if absolute_paths:
|
||||||
|
cmd.append('--src-prefix=a/%s/' % self.relpath)
|
||||||
|
cmd.append('--dst-prefix=b/%s/' % self.relpath)
|
||||||
cmd.append('--')
|
cmd.append('--')
|
||||||
p = GitCommand(self,
|
p = GitCommand(self,
|
||||||
cmd,
|
cmd,
|
||||||
@ -866,31 +913,30 @@ class Project(object):
|
|||||||
branch.remote.projectname = self.name
|
branch.remote.projectname = self.name
|
||||||
branch.remote.Save()
|
branch.remote.Save()
|
||||||
|
|
||||||
if branch.remote.ReviewProtocol == 'ssh':
|
url = branch.remote.ReviewUrl(self.UserEmail)
|
||||||
if dest_branch.startswith(R_HEADS):
|
if url is None:
|
||||||
dest_branch = dest_branch[len(R_HEADS):]
|
raise UploadError('review not configured')
|
||||||
|
cmd = ['push']
|
||||||
|
|
||||||
|
if url.startswith('ssh://'):
|
||||||
rp = ['gerrit receive-pack']
|
rp = ['gerrit receive-pack']
|
||||||
for e in people[0]:
|
for e in people[0]:
|
||||||
rp.append('--reviewer=%s' % sq(e))
|
rp.append('--reviewer=%s' % sq(e))
|
||||||
for e in people[1]:
|
for e in people[1]:
|
||||||
rp.append('--cc=%s' % sq(e))
|
rp.append('--cc=%s' % sq(e))
|
||||||
|
|
||||||
ref_spec = '%s:refs/for/%s' % (R_HEADS + branch.name, dest_branch)
|
|
||||||
if auto_topic:
|
|
||||||
ref_spec = ref_spec + '/' + branch.name
|
|
||||||
|
|
||||||
cmd = ['push']
|
|
||||||
cmd.append('--receive-pack=%s' % " ".join(rp))
|
cmd.append('--receive-pack=%s' % " ".join(rp))
|
||||||
cmd.append(branch.remote.SshReviewUrl(self.UserEmail))
|
|
||||||
cmd.append(ref_spec)
|
|
||||||
|
|
||||||
if GitCommand(self, cmd, bare = True).Wait() != 0:
|
cmd.append(url)
|
||||||
raise UploadError('Upload failed')
|
|
||||||
|
|
||||||
else:
|
if dest_branch.startswith(R_HEADS):
|
||||||
raise UploadError('Unsupported protocol %s' \
|
dest_branch = dest_branch[len(R_HEADS):]
|
||||||
% branch.remote.review)
|
ref_spec = '%s:refs/for/%s' % (R_HEADS + branch.name, dest_branch)
|
||||||
|
if auto_topic:
|
||||||
|
ref_spec = ref_spec + '/' + branch.name
|
||||||
|
cmd.append(ref_spec)
|
||||||
|
|
||||||
|
if GitCommand(self, cmd, bare = True).Wait() != 0:
|
||||||
|
raise UploadError('Upload failed')
|
||||||
|
|
||||||
msg = "posted to %s for %s" % (branch.remote.review, dest_branch)
|
msg = "posted to %s for %s" % (branch.remote.review, dest_branch)
|
||||||
self.bare_git.UpdateRef(R_PUB + branch.name,
|
self.bare_git.UpdateRef(R_PUB + branch.name,
|
||||||
@ -900,7 +946,11 @@ class Project(object):
|
|||||||
|
|
||||||
## Sync ##
|
## Sync ##
|
||||||
|
|
||||||
def Sync_NetworkHalf(self, quiet=False, is_new=None, current_branch_only=False):
|
def Sync_NetworkHalf(self,
|
||||||
|
quiet=False,
|
||||||
|
is_new=None,
|
||||||
|
current_branch_only=False,
|
||||||
|
clone_bundle=True):
|
||||||
"""Perform only the network IO portion of the sync process.
|
"""Perform only the network IO portion of the sync process.
|
||||||
Local working directory/branch state is not affected.
|
Local working directory/branch state is not affected.
|
||||||
"""
|
"""
|
||||||
@ -923,7 +973,9 @@ class Project(object):
|
|||||||
else:
|
else:
|
||||||
alt_dir = None
|
alt_dir = None
|
||||||
|
|
||||||
if alt_dir is None and self._ApplyCloneBundle(initial=is_new, quiet=quiet):
|
if clone_bundle \
|
||||||
|
and alt_dir is None \
|
||||||
|
and self._ApplyCloneBundle(initial=is_new, quiet=quiet):
|
||||||
is_new = False
|
is_new = False
|
||||||
|
|
||||||
if not self._RemoteFetch(initial=is_new, quiet=quiet, alt_dir=alt_dir,
|
if not self._RemoteFetch(initial=is_new, quiet=quiet, alt_dir=alt_dir,
|
||||||
@ -1094,10 +1146,12 @@ class Project(object):
|
|||||||
len(local_changes) - cnt_mine)
|
len(local_changes) - cnt_mine)
|
||||||
|
|
||||||
branch.remote = self.GetRemote(self.remote.name)
|
branch.remote = self.GetRemote(self.remote.name)
|
||||||
branch.merge = self.revisionExpr
|
if not ID_RE.match(self.revisionExpr):
|
||||||
|
# in case of manifest sync the revisionExpr might be a SHA1
|
||||||
|
branch.merge = self.revisionExpr
|
||||||
branch.Save()
|
branch.Save()
|
||||||
|
|
||||||
if cnt_mine > 0:
|
if cnt_mine > 0 and self.rebase:
|
||||||
def _dorebase():
|
def _dorebase():
|
||||||
self._Rebase(upstream = '%s^1' % last_mine, onto = revid)
|
self._Rebase(upstream = '%s^1' % last_mine, onto = revid)
|
||||||
self._CopyFiles()
|
self._CopyFiles()
|
||||||
@ -1447,6 +1501,8 @@ class Project(object):
|
|||||||
remote = self.GetRemote(self.remote.name)
|
remote = self.GetRemote(self.remote.name)
|
||||||
bundle_url = remote.url + '/clone.bundle'
|
bundle_url = remote.url + '/clone.bundle'
|
||||||
bundle_url = GitConfig.ForUser().UrlInsteadOf(bundle_url)
|
bundle_url = GitConfig.ForUser().UrlInsteadOf(bundle_url)
|
||||||
|
if GetSchemeFromUrl(bundle_url) in ('persistent-http', 'persistent-https'):
|
||||||
|
bundle_url = bundle_url[len('persistent-'):]
|
||||||
if GetSchemeFromUrl(bundle_url) not in ('http', 'https'):
|
if GetSchemeFromUrl(bundle_url) not in ('http', 'https'):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
@ -1504,7 +1560,7 @@ class Project(object):
|
|||||||
except:
|
except:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
if e.code == 404:
|
if e.code in (401, 403, 404):
|
||||||
keep = False
|
keep = False
|
||||||
return False
|
return False
|
||||||
elif _content_type() == 'text/plain':
|
elif _content_type() == 'text/plain':
|
||||||
@ -1530,7 +1586,7 @@ class Project(object):
|
|||||||
|
|
||||||
p = None
|
p = None
|
||||||
try:
|
try:
|
||||||
size = r.headers['content-length']
|
size = r.headers.get('content-length', 0)
|
||||||
unit = 1 << 10
|
unit = 1 << 10
|
||||||
|
|
||||||
if size and not quiet:
|
if size and not quiet:
|
||||||
@ -2076,7 +2132,8 @@ class MetaProject(Project):
|
|||||||
remote = RemoteSpec('origin'),
|
remote = RemoteSpec('origin'),
|
||||||
relpath = '.repo/%s' % name,
|
relpath = '.repo/%s' % name,
|
||||||
revisionExpr = 'refs/heads/master',
|
revisionExpr = 'refs/heads/master',
|
||||||
revisionId = None)
|
revisionId = None,
|
||||||
|
groups = None)
|
||||||
|
|
||||||
def PreSync(self):
|
def PreSync(self):
|
||||||
if self.Exists:
|
if self.Exists:
|
||||||
|
11
repo
11
repo
@ -28,7 +28,7 @@ if __name__ == '__main__':
|
|||||||
del magic
|
del magic
|
||||||
|
|
||||||
# increment this whenever we make important changes to this script
|
# increment this whenever we make important changes to this script
|
||||||
VERSION = (1, 14)
|
VERSION = (1, 15)
|
||||||
|
|
||||||
# increment this if the MAINTAINER_KEYS block is modified
|
# increment this if the MAINTAINER_KEYS block is modified
|
||||||
KEYRING_VERSION = (1,0)
|
KEYRING_VERSION = (1,0)
|
||||||
@ -125,6 +125,10 @@ group.add_option('--reference',
|
|||||||
group.add_option('--depth', type='int', default=None,
|
group.add_option('--depth', type='int', default=None,
|
||||||
dest='depth',
|
dest='depth',
|
||||||
help='create a shallow clone with given depth; see git clone')
|
help='create a shallow clone with given depth; see git clone')
|
||||||
|
group.add_option('-g', '--groups',
|
||||||
|
dest='groups', default="",
|
||||||
|
help='restrict manifest projects to ones with a specified group',
|
||||||
|
metavar='GROUP')
|
||||||
|
|
||||||
|
|
||||||
# Tool
|
# Tool
|
||||||
@ -311,11 +315,12 @@ def _InitHttp():
|
|||||||
n = netrc.netrc()
|
n = netrc.netrc()
|
||||||
for host in n.hosts:
|
for host in n.hosts:
|
||||||
p = n.hosts[host]
|
p = n.hosts[host]
|
||||||
mgr.add_password(None, 'http://%s/' % host, p[0], p[2])
|
mgr.add_password(p[1], 'http://%s/' % host, p[0], p[2])
|
||||||
mgr.add_password(None, 'https://%s/' % host, p[0], p[2])
|
mgr.add_password(p[1], 'https://%s/' % host, p[0], p[2])
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
handlers.append(urllib2.HTTPBasicAuthHandler(mgr))
|
handlers.append(urllib2.HTTPBasicAuthHandler(mgr))
|
||||||
|
handlers.append(urllib2.HTTPDigestAuthHandler(mgr))
|
||||||
|
|
||||||
if 'http_proxy' in os.environ:
|
if 'http_proxy' in os.environ:
|
||||||
url = os.environ['http_proxy']
|
url = os.environ['http_proxy']
|
||||||
|
@ -20,8 +20,21 @@ class Diff(PagedCommand):
|
|||||||
helpSummary = "Show changes between commit and working tree"
|
helpSummary = "Show changes between commit and working tree"
|
||||||
helpUsage = """
|
helpUsage = """
|
||||||
%prog [<project>...]
|
%prog [<project>...]
|
||||||
|
|
||||||
|
The -u option causes '%prog' to generate diff output with file paths
|
||||||
|
relative to the repository root, so the output can be applied
|
||||||
|
to the Unix 'patch' command.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
def _Options(self, p):
|
||||||
|
def cmd(option, opt_str, value, parser):
|
||||||
|
setattr(parser.values, option.dest, list(parser.rargs))
|
||||||
|
while parser.rargs:
|
||||||
|
del parser.rargs[0]
|
||||||
|
p.add_option('-u', '--absolute',
|
||||||
|
dest='absolute', action='store_true',
|
||||||
|
help='Paths are relative to the repository root')
|
||||||
|
|
||||||
def Execute(self, opt, args):
|
def Execute(self, opt, args):
|
||||||
for project in self.GetProjects(args):
|
for project in self.GetProjects(args):
|
||||||
project.PrintWorkTreeDiff()
|
project.PrintWorkTreeDiff(opt.absolute)
|
||||||
|
@ -23,7 +23,6 @@ from error import ManifestParseError
|
|||||||
from project import SyncBuffer
|
from project import SyncBuffer
|
||||||
from git_config import GitConfig
|
from git_config import GitConfig
|
||||||
from git_command import git_require, MIN_GIT_VERSION
|
from git_command import git_require, MIN_GIT_VERSION
|
||||||
from git_config import GitConfig
|
|
||||||
|
|
||||||
class Init(InteractiveCommand, MirrorSafeCommand):
|
class Init(InteractiveCommand, MirrorSafeCommand):
|
||||||
common = True
|
common = True
|
||||||
@ -37,20 +36,6 @@ The latest repo source code and manifest collection is downloaded
|
|||||||
from the server and is installed in the .repo/ directory in the
|
from the server and is installed in the .repo/ directory in the
|
||||||
current working directory.
|
current working directory.
|
||||||
|
|
||||||
The optional -u argument can be used to specify a URL to the
|
|
||||||
manifest project. It is also possible to have a git configuration
|
|
||||||
section as below to use 'identifier' as argument to -u:
|
|
||||||
|
|
||||||
[repo-manifest "identifier"]
|
|
||||||
url = ...
|
|
||||||
server = ...
|
|
||||||
reference = ...
|
|
||||||
|
|
||||||
Only the url is required - the others are optional.
|
|
||||||
|
|
||||||
If no -u argument is specified, the 'repo-manifest' section named
|
|
||||||
'default' will be used if present.
|
|
||||||
|
|
||||||
The optional -b argument can be used to select the manifest branch
|
The optional -b argument can be used to select the manifest branch
|
||||||
to checkout and use. If no branch is specified, master is assumed.
|
to checkout and use. If no branch is specified, master is assumed.
|
||||||
|
|
||||||
@ -84,7 +69,7 @@ to update the working directory files.
|
|||||||
# Manifest
|
# Manifest
|
||||||
g = p.add_option_group('Manifest options')
|
g = p.add_option_group('Manifest options')
|
||||||
g.add_option('-u', '--manifest-url',
|
g.add_option('-u', '--manifest-url',
|
||||||
dest='manifest_url', default='default',
|
dest='manifest_url',
|
||||||
help='manifest repository location', metavar='URL')
|
help='manifest repository location', metavar='URL')
|
||||||
g.add_option('-b', '--manifest-branch',
|
g.add_option('-b', '--manifest-branch',
|
||||||
dest='manifest_branch',
|
dest='manifest_branch',
|
||||||
@ -101,6 +86,10 @@ to update the working directory files.
|
|||||||
g.add_option('--depth', type='int', default=None,
|
g.add_option('--depth', type='int', default=None,
|
||||||
dest='depth',
|
dest='depth',
|
||||||
help='create a shallow clone with given depth; see git clone')
|
help='create a shallow clone with given depth; see git clone')
|
||||||
|
g.add_option('-g', '--groups',
|
||||||
|
dest='groups', default="",
|
||||||
|
help='restrict manifest projects to ones with a specified group',
|
||||||
|
metavar='GROUP')
|
||||||
|
|
||||||
# Tool
|
# Tool
|
||||||
g = p.add_option_group('repo Version options')
|
g = p.add_option_group('repo Version options')
|
||||||
@ -123,25 +112,10 @@ to update the working directory files.
|
|||||||
def _SyncManifest(self, opt):
|
def _SyncManifest(self, opt):
|
||||||
m = self.manifest.manifestProject
|
m = self.manifest.manifestProject
|
||||||
is_new = not m.Exists
|
is_new = not m.Exists
|
||||||
manifest_server = None
|
|
||||||
|
|
||||||
# The manifest url may point out a manifest section in the config
|
|
||||||
key = 'repo-manifest.%s.' % opt.manifest_url
|
|
||||||
if GitConfig.ForUser().GetString(key + 'url'):
|
|
||||||
opt.manifest_url = GitConfig.ForUser().GetString(key + 'url')
|
|
||||||
|
|
||||||
# Also copy other options to the manifest config if not specified already.
|
|
||||||
if not opt.reference:
|
|
||||||
opt.reference = GitConfig.ForUser().GetString(key + 'reference')
|
|
||||||
manifest_server = GitConfig.ForUser().GetString(key + 'server')
|
|
||||||
|
|
||||||
if is_new:
|
if is_new:
|
||||||
if not opt.manifest_url or opt.manifest_url == 'default':
|
if not opt.manifest_url:
|
||||||
print >>sys.stderr, """\
|
print >>sys.stderr, 'fatal: manifest url (-u) is required.'
|
||||||
fatal: missing manifest url (-u) and no default found.
|
|
||||||
|
|
||||||
tip: The global git configuration key 'repo-manifest.default.url' can
|
|
||||||
be used to specify a default url."""
|
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
if not opt.quiet:
|
if not opt.quiet:
|
||||||
@ -165,8 +139,7 @@ fatal: missing manifest url (-u) and no default found.
|
|||||||
r.ResetFetch()
|
r.ResetFetch()
|
||||||
r.Save()
|
r.Save()
|
||||||
|
|
||||||
if manifest_server:
|
m.config.SetString('manifest.groups', opt.groups)
|
||||||
m.config.SetString('repo.manifest-server', manifest_server)
|
|
||||||
|
|
||||||
if opt.reference:
|
if opt.reference:
|
||||||
m.config.SetString('repo.reference', opt.reference)
|
m.config.SetString('repo.reference', opt.reference)
|
||||||
|
@ -101,19 +101,6 @@ the following meanings:
|
|||||||
all = self.GetProjects(args)
|
all = self.GetProjects(args)
|
||||||
counter = itertools.count()
|
counter = itertools.count()
|
||||||
|
|
||||||
on = {}
|
|
||||||
for project in all:
|
|
||||||
cb = project.CurrentBranch
|
|
||||||
if cb:
|
|
||||||
if cb not in on:
|
|
||||||
on[cb] = []
|
|
||||||
on[cb].append(project)
|
|
||||||
|
|
||||||
branch_names = list(on.keys())
|
|
||||||
branch_names.sort()
|
|
||||||
for cb in branch_names:
|
|
||||||
print '# on branch %s' % cb
|
|
||||||
|
|
||||||
if opt.jobs == 1:
|
if opt.jobs == 1:
|
||||||
for project in all:
|
for project in all:
|
||||||
state = project.PrintWorkTreeStatus()
|
state = project.PrintWorkTreeStatus()
|
||||||
|
@ -86,6 +86,12 @@ specify a custom tag/label.
|
|||||||
The -f/--force-broken option can be used to proceed with syncing
|
The -f/--force-broken option can be used to proceed with syncing
|
||||||
other projects if a project sync fails.
|
other projects if a project sync fails.
|
||||||
|
|
||||||
|
The --no-clone-bundle option disables any attempt to use
|
||||||
|
$URL/clone.bundle to bootstrap a new Git repository from a
|
||||||
|
resumeable bundle file on a content delivery network. This
|
||||||
|
may be necessary if there are problems with the local Python
|
||||||
|
HTTP client or proxy configuration, but the Git binary works.
|
||||||
|
|
||||||
SSH Connections
|
SSH Connections
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
@ -140,6 +146,12 @@ later is required to fix a server side protocol bug.
|
|||||||
p.add_option('-j','--jobs',
|
p.add_option('-j','--jobs',
|
||||||
dest='jobs', action='store', type='int',
|
dest='jobs', action='store', type='int',
|
||||||
help="projects to fetch simultaneously (default %d)" % self.jobs)
|
help="projects to fetch simultaneously (default %d)" % self.jobs)
|
||||||
|
p.add_option('-m', '--manifest-name',
|
||||||
|
dest='manifest_name',
|
||||||
|
help='temporary manifest to use for this sync', metavar='NAME.xml')
|
||||||
|
p.add_option('--no-clone-bundle',
|
||||||
|
dest='no_clone_bundle', action='store_true',
|
||||||
|
help='disable use of /clone.bundle on HTTP/HTTPS')
|
||||||
if show_smart:
|
if show_smart:
|
||||||
p.add_option('-s', '--smart-sync',
|
p.add_option('-s', '--smart-sync',
|
||||||
dest='smart_sync', action='store_true',
|
dest='smart_sync', action='store_true',
|
||||||
@ -182,8 +194,10 @@ later is required to fix a server side protocol bug.
|
|||||||
# - We always make sure we unlock the lock if we locked it.
|
# - We always make sure we unlock the lock if we locked it.
|
||||||
try:
|
try:
|
||||||
try:
|
try:
|
||||||
success = project.Sync_NetworkHalf(quiet=opt.quiet,
|
success = project.Sync_NetworkHalf(
|
||||||
current_branch_only=opt.current_branch_only)
|
quiet=opt.quiet,
|
||||||
|
current_branch_only=opt.current_branch_only,
|
||||||
|
clone_bundle=not opt.no_clone_bundle)
|
||||||
|
|
||||||
# Lock around all the rest of the code, since printing, updating a set
|
# Lock around all the rest of the code, since printing, updating a set
|
||||||
# and Progress.update() are not thread safe.
|
# and Progress.update() are not thread safe.
|
||||||
@ -263,7 +277,7 @@ later is required to fix a server side protocol bug.
|
|||||||
|
|
||||||
def UpdateProjectList(self):
|
def UpdateProjectList(self):
|
||||||
new_project_paths = []
|
new_project_paths = []
|
||||||
for project in self.manifest.projects.values():
|
for project in self.GetProjects(None, missing_ok=True):
|
||||||
if project.relpath:
|
if project.relpath:
|
||||||
new_project_paths.append(project.relpath)
|
new_project_paths.append(project.relpath)
|
||||||
file_name = 'project.list'
|
file_name = 'project.list'
|
||||||
@ -292,7 +306,8 @@ later is required to fix a server side protocol bug.
|
|||||||
worktree = os.path.join(self.manifest.topdir, path),
|
worktree = os.path.join(self.manifest.topdir, path),
|
||||||
relpath = path,
|
relpath = path,
|
||||||
revisionExpr = 'HEAD',
|
revisionExpr = 'HEAD',
|
||||||
revisionId = None)
|
revisionId = None,
|
||||||
|
groups = None)
|
||||||
|
|
||||||
if project.IsDirty():
|
if project.IsDirty():
|
||||||
print >>sys.stderr, 'error: Cannot remove project "%s": \
|
print >>sys.stderr, 'error: Cannot remove project "%s": \
|
||||||
@ -333,6 +348,15 @@ uncommitted changes are present' % project.relpath
|
|||||||
if opt.network_only and opt.local_only:
|
if opt.network_only and opt.local_only:
|
||||||
print >>sys.stderr, 'error: cannot combine -n and -l'
|
print >>sys.stderr, 'error: cannot combine -n and -l'
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
if opt.manifest_name and opt.smart_sync:
|
||||||
|
print >>sys.stderr, 'error: cannot combine -m and -s'
|
||||||
|
sys.exit(1)
|
||||||
|
if opt.manifest_name and opt.smart_tag:
|
||||||
|
print >>sys.stderr, 'error: cannot combine -m and -t'
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
if opt.manifest_name:
|
||||||
|
self.manifest.Override(opt.manifest_name)
|
||||||
|
|
||||||
if opt.smart_sync or opt.smart_tag:
|
if opt.smart_sync or opt.smart_tag:
|
||||||
if not self.manifest.manifest_server:
|
if not self.manifest.manifest_server:
|
||||||
|
@ -123,6 +123,9 @@ Gerrit Code Review: http://code.google.com/p/gerrit/
|
|||||||
p.add_option('--br',
|
p.add_option('--br',
|
||||||
type='string', action='store', dest='branch',
|
type='string', action='store', dest='branch',
|
||||||
help='Branch to upload.')
|
help='Branch to upload.')
|
||||||
|
p.add_option('--cbr', '--current-branch',
|
||||||
|
dest='current_branch', action='store_true',
|
||||||
|
help='Upload current git branch.')
|
||||||
|
|
||||||
# Options relating to upload hook. Note that verify and no-verify are NOT
|
# Options relating to upload hook. Note that verify and no-verify are NOT
|
||||||
# opposites of each other, which is why they store to different locations.
|
# opposites of each other, which is why they store to different locations.
|
||||||
@ -351,7 +354,11 @@ Gerrit Code Review: http://code.google.com/p/gerrit/
|
|||||||
branch = opt.branch
|
branch = opt.branch
|
||||||
|
|
||||||
for project in project_list:
|
for project in project_list:
|
||||||
avail = project.GetUploadableBranches(branch)
|
if opt.current_branch:
|
||||||
|
cbr = project.CurrentBranch
|
||||||
|
avail = [project.GetUploadableBranch(cbr)] if cbr else None
|
||||||
|
else:
|
||||||
|
avail = project.GetUploadableBranches(branch)
|
||||||
if avail:
|
if avail:
|
||||||
pending.append((project, avail))
|
pending.append((project, avail))
|
||||||
|
|
||||||
|
@ -19,6 +19,9 @@ from git_command import git
|
|||||||
from project import HEAD
|
from project import HEAD
|
||||||
|
|
||||||
class Version(Command, MirrorSafeCommand):
|
class Version(Command, MirrorSafeCommand):
|
||||||
|
wrapper_version = None
|
||||||
|
wrapper_path = None
|
||||||
|
|
||||||
common = False
|
common = False
|
||||||
helpSummary = "Display the version of repo"
|
helpSummary = "Display the version of repo"
|
||||||
helpUsage = """
|
helpUsage = """
|
||||||
@ -31,5 +34,10 @@ class Version(Command, MirrorSafeCommand):
|
|||||||
|
|
||||||
print 'repo version %s' % rp.work_git.describe(HEAD)
|
print 'repo version %s' % rp.work_git.describe(HEAD)
|
||||||
print ' (from %s)' % rem.url
|
print ' (from %s)' % rem.url
|
||||||
|
|
||||||
|
if Version.wrapper_path is not None:
|
||||||
|
print 'repo launcher version %s' % Version.wrapper_version
|
||||||
|
print ' (from %s)' % Version.wrapper_path
|
||||||
|
|
||||||
print git.version().strip()
|
print git.version().strip()
|
||||||
print 'Python %s' % sys.version
|
print 'Python %s' % sys.version
|
||||||
|
Reference in New Issue
Block a user