Daniel Pfeifer wrote: > Up until one month ago, the following worked to clone version 5.6.2: > > git clone --branch v5.6.2 git://code.qt.io/qt/qt5.git . > ./init-repository > --module-subset=essential,qtconnectivity,qtlocation,qtserialbus,qtserialport [...] > It now fails with the following output: > > + git clone --branch 5.6.2 git://code.qt.io/qt/qtbase.git qtbase > Cloning into 'qtbase'... > fatal: Remote branch 5.6.2 not found in upstream origin
That is because the M.m.p branch is always transient and goes away when the vM.m.p tag gets set; so the branch is gone. > If I pass `--branch v5.6.2` to `init-repository`, I get the same error. v5.6.2 is a tag, not a branch. The branch was 5.6.2 > How can I get the exact tagged version v5.6.2? git clone without specifying --branch (or with any branch you like, it doesn't matter) then git checkout v5.6.2 Eddy. _______________________________________________ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development