Added "no-gerrit" option.
In order to enable projects that do not require a git repository (such as UX),
I've added the parsing for a no-gerrit option on review.projects.yaml.
Change-Id: I8212cbe8e0dfef13105b5a966279251f76fb56ea
diff --git a/jeepyb/cmd/manage_projects.py b/jeepyb/cmd/manage_projects.py
index 7b541a9..546c97a 100644
--- a/jeepyb/cmd/manage_projects.py
+++ b/jeepyb/cmd/manage_projects.py
@@ -579,6 +579,10 @@
track_upstream = 'track-upstream' in options
repo_path = os.path.join(JEEPYB_CACHE_DIR, project)
+ # If this project doesn't want to use gerrit, exit cleanly.
+ if 'no-gerrit' in options:
+ continue
+
project_git = "%s.git" % project
remote_url = "ssh://localhost:%s/%s" % (GERRIT_PORT, project)
git_opts = dict(upstream=upstream,