For the new git repositories, we need to use https instead of http and ssh.

Bug=None
Test=Tested setup_chromeos, build_chromes, remote_gcc_build

Change-Id: I95833ed07692ea04f396233ab87aa7b47ff6b106
Reviewed-on: https://chrome-internal-review.googlesource.com/144397
Reviewed-by: Han Shen <shenhan@google.com>
Commit-Queue: Luis Lozano <llozano@chromium.org>
Tested-by: Luis Lozano <llozano@chromium.org>
diff --git a/utils/misc.py b/utils/misc.py
index adf9c54..61a0feb 100644
--- a/utils/misc.py
+++ b/utils/misc.py
@@ -25,7 +25,7 @@
   """Get Chromeos version from Lsb version."""
   ce = command_executer.GetCommandExecuter()
   command = ("git ls-remote "
-             "http://chromium.googlesource.com/chromiumos/manifest.git")
+             "https://chromium.googlesource.com/chromiumos/manifest.git")
   ret, out, _ = ce.RunCommand(command, return_output=True,
                               print_to_console=False)
   assert ret == 0, "Command %s failed" % command