编译QtWebEngine 错误
在编译QtWebEngine时,总出现想不到的问题,
在执行
python init-repository.py 时:
$ python init-repository.py
Fatal: Disconnected: No supported authentication methods available (server sent:
publickey)
Configuring git to ignore all submodules. Submodule changes will not show up in
"git diff"!
就是这 py脚本的:
def installGitHooks():
os.chdir(qtwebengine_root)
if sys.platform == 'win32':
subprocess.call(['pscp', '-p', '-P', '29418', 'codereview.qt-project.org:hooks/commit-msg', '.git/hooks'])
else:
subprocess.call(['scp', '-p', '-P', '29418', 'codereview.qt-project.org:hooks/commit-msg', '.git/hooks'])
出现上述错误,亲们,有在搞这个的没??求帮助
QtWebEngine编译页: http://qt-project.org/wiki/QtWebEngineOnWindows