From 3c8dea1f8d7c4257d080f9f34159cdb2fffb81e6 Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Fri, 29 May 2009 18:38:17 -0700 Subject: Change project.revision to revisionExpr and revisionId The revisionExpr field now holds an expression from the manifest, such as "refs/heads/master", while revisionId holds the current commit-ish SHA-1 of the revisionExpr. Currently that is only filled in if the manifest points directly to a SHA-1. Signed-off-by: Shawn O. Pearce --- subcmds/init.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'subcmds/init.py') diff --git a/subcmds/init.py b/subcmds/init.py index 0d0fcd06..5ba4d794 100644 --- a/subcmds/init.py +++ b/subcmds/init.py @@ -113,12 +113,12 @@ to update the working directory files. m._InitGitDir() if opt.manifest_branch: - m.revision = opt.manifest_branch + m.revisionExpr = opt.manifest_branch else: - m.revision = 'refs/heads/master' + m.revisionExpr = 'refs/heads/master' else: if opt.manifest_branch: - m.revision = opt.manifest_branch + m.revisionExpr = opt.manifest_branch else: m.PreSync() -- cgit v1.2.3-54-g00ecf