[Development] How to use `init-repository` properly to clean up the working tree after checking out?

Haowei Hsu hwhsu1231 at gmail.com
Sun Aug 20 19:41:37 CEST 2023


Hello, Qt Development Team.

Recently, I was trying to build Qt Documentation. And there is an issue
bothering me a lot.

For example, Suppose that I check out from branch *6.5.2* to branch *6.2.4*
.
If we run *`git status`* at this point, we'll notice that the current
working tree is not clean.
It is mainly because submodules are not updated to the correct status.

However, I found that even after I run *`perl init-repository -f`* and then
running *`git status`*
again, the working tree is still not clean.

The following commands are what I test with *`init-repository`
<https://github.com/qt/qt5/blob/dev/init-repository>*:

   1. *git status*
   2. *git checkout 6.2.4*
   3. *perl init-repository -f*
   4. *git status*

You can see the attachment with the full log:
*log-init-repository-not-able-to-clean-up.txt*

[image: image.png]

Currently, whenever I check out to another branch/tag, I use the following
two commands to
clean up the working tree:

   1.
*git submodule update --recursive *
   2. *git clean -xfdf && git submodule foreach --recursive git clean -xfdf*

The following commands are what I test with my current approach:

   1. *git status*
   2. *git checkout 6.2.4*
   3. *git status*
   4.
*git submodule update --recursive *
   5. *git clean -xfdf && git submodule foreach --recursive git clean -xfdf*
   6. *git status*

You can see the attachment with the full log:
*log-my-approach-to-clean-up.txt*

[image: image.png]

As we can see, my approach seems not able to clean up the working tree in
this situation as well.

Therefore, I'd like to ask:
*how to use `init-repository` properly to clean up the working tree after
checking out?*

---
Haowei Hsu
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.qt-project.org/pipermail/development/attachments/20230821/f8456120/attachment-0001.htm>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image.png
Type: image/png
Size: 54818 bytes
Desc: not available
URL: <http://lists.qt-project.org/pipermail/development/attachments/20230821/f8456120/attachment-0002.png>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image.png
Type: image/png
Size: 45597 bytes
Desc: not available
URL: <http://lists.qt-project.org/pipermail/development/attachments/20230821/f8456120/attachment-0003.png>
-------------- next part --------------
D:\Repo\tmp\qt>git status
On branch 6.5.2
Your branch is up to date with 'origin/6.5.2'.

nothing to commit, working tree clean

D:\Repo\tmp\qt>git checkout 6.2.4
warning: unable to rmdir 'qtgrpc': Directory not empty
warning: unable to rmdir 'qthttpserver': Directory not empty
warning: unable to rmdir 'qtlanguageserver': Directory not empty
warning: unable to rmdir 'qtquick3dphysics': Directory not empty
warning: unable to rmdir 'qtquickeffectmaker': Directory not empty
Switched to a new branch '6.2.4'
M       qt3d
M       qt5compat
M       qtactiveqt
M       qtbase
M       qtcharts
M       qtcoap
M       qtconnectivity
M       qtdatavis3d
M       qtdeclarative
M       qtdoc
M       qtimageformats
M       qtlocation
M       qtlottie
M       qtmqtt
M       qtmultimedia
M       qtnetworkauth
M       qtopcua
M       qtpositioning
M       qtqa
M       qtquick3d
M       qtquicktimeline
M       qtremoteobjects
M       qtrepotools
M       qtscxml
M       qtsensors
M       qtserialbus
M       qtserialport
M       qtshadertools
M       qtspeech
M       qtsvg
M       qttools
M       qttranslations
M       qtvirtualkeyboard
M       qtwayland
M       qtwebchannel
M       qtwebengine
M       qtwebsockets
M       qtwebview
branch '6.2.4' set up to track 'origin/6.2.4'.

D:\Repo\tmp\qt>perl init-repository -f
+ git submodule init qt3d qt5compat qtactiveqt qtbase qtcharts qtcoap qtconnectivity qtdatavis3d qtdeclarative qtdoc qtimageformats qtlottie qtmqtt qtmultimedia qtnetworkauth qtopcua qtpositioning qtqa qtquick3d qtquicktimeline qtremoteobjects qtrepotools qtscxml qtsensors qtserialbus qtserialport qtshadertools qtsvg qttools qttranslations qtvirtualkeyboard qtwayland qtwebchannel qtwebengine qtwebsockets qtwebview
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config --remove-section submodule.qtcanvas3d
+ git config --remove-section submodule.qtfeedback
+ git config --remove-section submodule.qtgamepad
+ git config --remove-section submodule.qtgrpc
+ git config --remove-section submodule.qthttpserver
+ git config --remove-section submodule.qtlanguageserver
+ git config --remove-section submodule.qtlocation
+ git config --remove-section submodule.qtpim
+ git config --remove-section submodule.qtquick3dphysics
+ git config --remove-section submodule.qtquickeffectmaker
+ git config --remove-section submodule.qtspeech
+ git config --remove-section submodule.qtsystems
+ git config --remove-section submodule.qtwebglplugin
+ git config --remove-section submodule.qtxmlpatterns
+ git config remote.origin.url https://github.com/qt/qt3d.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qt3d.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qt5compat.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qt5compat.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtactiveqt.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtactiveqt.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtbase.git
+ git fetch origin
remote: Enumerating objects: 26, done.
remote: Counting objects: 100% (26/26), done.
remote: Compressing objects: 100% (14/14), done.
remote: Total 14 (delta 13), reused 1 (delta 0), pack-reused 0
Unpacking objects: 100% (14/14), 1.41 KiB | 1024 bytes/s, done.
From https://github.com/qt/qtbase
   edcbf584ae..76b3a4cd50  6.5        -> origin/6.5
   4df46fd72c..b29f12be3e  6.6        -> origin/6.6
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtbase.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtcharts.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtcharts.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtcoap.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtcoap.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtconnectivity.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtconnectivity.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtdatavis3d.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtdatavis3d.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtdeclarative.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtdeclarative.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtdoc.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtdoc.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtimageformats.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtimageformats.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtlottie.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtlottie.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtmqtt.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtmqtt.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtmultimedia.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtmultimedia.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtnetworkauth.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtnetworkauth.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtopcua.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtopcua.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtpositioning.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtpositioning.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtqa.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtqa.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtquick3d.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtquick3d.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtquicktimeline
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtquicktimeline
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtremoteobjects.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtremoteobjects.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtrepotools.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtrepotools.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtscxml.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtscxml.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtsensors.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtsensors.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtserialbus.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtserialbus.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtserialport.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtserialport.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtshadertools.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtshadertools.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtsvg.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtsvg.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qttools.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qttools.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qttranslations.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qttranslations.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtvirtualkeyboard.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtvirtualkeyboard.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtwayland.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtwayland.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtwebchannel.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtwebchannel.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtwebengine.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtwebengine.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtwebsockets.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtwebsockets.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git config remote.origin.url https://github.com/qt/qtwebview.git
+ git fetch origin
+ git config commit.template D:/Repo/tmp/qt/.commit-template
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtwebview.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git submodule update --force --no-fetch
Submodule path 'qt3d': checked out 'ba60c55bd21ac774154eadbbb7b1573674668a80'
Submodule path 'qt5compat': checked out 'd2f614a177ed8c1f7237a2c2b2a530d23bebace8'
Submodule path 'qtactiveqt': checked out 'a7d9fbfb46c46c95b468ee01f6fc31d7d82adfc3'
Submodule path 'qtbase': checked out 'd3b5353380797f3b67599ccebc5dc916057681e5'
Submodule path 'qtcharts': checked out 'bc4474149b50a4249a490cd541dabb77d1285576'
Submodule path 'qtcoap': checked out '66b731d0f2f3ec45d535a98e3859bf78e5ede8ed'
Submodule path 'qtconnectivity': checked out '1b8b3b251407e00423f1a58a5ee86c4d3e9901ec'
Submodule path 'qtdatavis3d': checked out 'b0d49a7eed0aa4164168b554519e3fe16d38e7bb'
Submodule path 'qtdeclarative': checked out '26140891b4b77e2e8292f75e9d20f5798a2bd247'
Submodule path 'qtdoc': checked out '4bd64592aad85fb02fa6dd7b0e40d9d0b7c959cf'
Submodule path 'qtimageformats': checked out '2dd8048d64de5ca7fcc817f5afdbd5fc368dd1f0'
Submodule path 'qtlottie': checked out '93601e37912efefc93a850e58861ffe8d4d604fa'
Submodule path 'qtmqtt': checked out '1db8babfef79f91e4a457633cc4e659b093d0e02'
Submodule path 'qtmultimedia': checked out '79739672e6a83b4095d0952068354cef9ff3495c'
Submodule path 'qtnetworkauth': checked out '97e6076031f7bc223e4ea68435e3d3d35ebadbb5'
Submodule path 'qtopcua': checked out '3eeb1db3b3687ad1110cb491b9d7f7d5fbed383d'
Submodule path 'qtpositioning': checked out '662461c306a17660fe94a6c3450bb7312423ee9b'
Submodule path 'qtqa': checked out '9a4e92089d4c23d8b1cde07ec5596f3611b0e362'
Submodule path 'qtquick3d': checked out 'ddff44aef63854644809a06d4fadf4f97833ce81'
Submodule path 'qtquicktimeline': checked out '764291bb8dcded2f4793f6fa48cfd3493d644135'
Submodule path 'qtremoteobjects': checked out '923c6dee3f0af69f848bf3bd4575e7dc8e0dc49e'
Submodule path 'qtrepotools': checked out '08ca9944715735726d36f7d82123dc299f73335d'
Submodule path 'qtscxml': checked out 'a3e8bf11424b306e38c8c7b114d2d6c600e0d3b4'
Submodule path 'qtsensors': checked out '45dc7967824262923694d83e36f94b4d6cc273b9'
Submodule path 'qtserialbus': checked out '58eb2dad75116ee51bd2939eb92202ec4f02a83a'
Submodule path 'qtserialport': checked out 'f41e290b17e68764da0bf88ded99f2180d79b83b'
Submodule path 'qtshadertools': checked out '47011f48f747a8855b0c4e9b7fdadb32ead254da'
Submodule path 'qtsvg': checked out '0237fcf58c8978c35386b2b7d38f306da0f20af2'
Submodule path 'qttools': checked out '2a982eb06ff9c35b48c969089e17c05f8248b57c'
Submodule path 'qttranslations': checked out 'eb6cc76cb8594080fc30abe44a497b62619691be'
Submodule path 'qtvirtualkeyboard': checked out 'd21c005345ea695a90dd980609762cb7e1f2f697'
Submodule path 'qtwayland': checked out 'b840a91bf5f4068efe3110411c156c17b869142c'
Submodule path 'qtwebchannel': checked out 'd6c00c7be359fe25846ed3d95f96afa36c4d11b1'
Submodule path 'qtwebengine': checked out 'acb01cacff784d51f97e8be16e57f89ebc2722f9'
Submodule path 'qtwebsockets': checked out '6dd991743fbd5b997392ac24997f97822df82053'
Submodule path 'qtwebview': checked out '4648d5d9ad50171a9f6e8fe8803cc92c12740baf'
+ git submodule init src/3rdparty/assimp/src
 *** /qt3d/src/3rdparty/assimp/src not found, ignoring alternate for this submodule
+ git config remote.origin.url https://github.com/qt/qtquick3d-assimp.git
+ git fetch origin
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtquick3d-assimp.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git submodule update --force --no-fetch
Submodule path 'src/3rdparty/assimp/src': checked out '5a38cd0a03015ceabbd5bc6efb0730dde1ef74e5'
+ git submodule init tests/auto/qml/ecmascripttests/test262
 *** /qtdeclarative/tests/auto/qml/ecmascripttests/test262 not found, ignoring alternate for this submodule
+ git config remote.origin.url https://github.com/qt/qtdeclarative-testsuites.git
+ git fetch origin
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtdeclarative-testsuites.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git submodule update --force --no-fetch
Submodule path 'tests/auto/qml/ecmascripttests/test262': checked out '4dad98d63c279b989fdb48006fbd1db8ee27bc7f'
+ git submodule init src/3rdparty/assimp/src
 *** /qtquick3d/src/3rdparty/assimp/src not found, ignoring alternate for this submodule
+ git config remote.origin.url https://github.com/qt/qtquick3d-assimp.git
+ git fetch origin
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtquick3d-assimp.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git submodule update --force --no-fetch
Submodule path 'src/3rdparty/assimp/src': checked out '5a38cd0a03015ceabbd5bc6efb0730dde1ef74e5'
+ git submodule init src/assistant/qlitehtml
 *** /qttools/src/assistant/qlitehtml not found, ignoring alternate for this submodule
+ git config remote.origin.url https://code.qt.io/playground/qlitehtml.git
+ git fetch origin
+ git submodule update --force --no-fetch
Submodule path 'src/assistant/qlitehtml': checked out '4931b7aa30f256c20573d283561aa432fecf8f38'
+ git submodule init src/3rdparty/litehtml
 *** /qttools/src/assistant/qlitehtml/src/3rdparty/litehtml not found, ignoring alternate for this submodule
+ git config remote.origin.url https://github.com/litehtml/litehtml.git
+ git fetch origin
+ git submodule update --force --no-fetch
Submodule path 'src/3rdparty/litehtml': checked out '6236113734bb0a28467e5999e86fdd2834be8e01'
+ git submodule init src/3rdparty
 *** /qtwebengine/src/3rdparty not found, ignoring alternate for this submodule
+ git clone --no-checkout https://github.com/qt/qtwebengine-chromium.git src/3rdparty
Cloning into 'src/3rdparty'...
remote: Enumerating objects: 2281732, done.
remote: Counting objects: 100% (109956/109956), done.
remote: Compressing objects: 100% (66838/66838), done.
remote: Total 2281732 (delta 40564), reused 109227 (delta 39853), pack-reused 2171776
Receiving objects: 100% (2281732/2281732), 4.02 GiB | 5.70 MiB/s, done.
Resolving deltas: 100% (1638668/1638668), done.
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qtwebengine-chromium.git
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
+ git submodule update --force --no-fetch
Submodule path 'src/3rdparty': checked out 'b33b4266df8c333d3d273ae4665d6b322eee33c6'
+ git config remote.gerrit.url ssh://codereview.qt-project.org/qt/qt5
+ git config remote.gerrit.fetch +refs/heads/*:refs/remotes/gerrit/* /heads/
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qt3d/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qt3d/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qt3d/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qt5compat/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qt5compat/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qt5compat/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtactiveqt/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtactiveqt/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtactiveqt/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtbase/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtbase/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtbase/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtcharts/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtcharts/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtcharts/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtcoap/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtcoap/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtcoap/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtconnectivity/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtconnectivity/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtconnectivity/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtdatavis3d/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtdatavis3d/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtdatavis3d/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtdeclarative/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtdeclarative/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtdeclarative/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtdoc/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtdoc/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtdoc/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtimageformats/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtimageformats/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtimageformats/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtlottie/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtlottie/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtlottie/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtmqtt/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtmqtt/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtmqtt/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtmultimedia/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtmultimedia/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtmultimedia/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtnetworkauth/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtnetworkauth/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtnetworkauth/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtopcua/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtopcua/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtopcua/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtpositioning/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtpositioning/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtpositioning/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtqa/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtqa/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtqa/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtquick3d/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtquick3d/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtquick3d/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtquicktimeline/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtquicktimeline/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtquicktimeline/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtremoteobjects/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtremoteobjects/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtremoteobjects/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtrepotools/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtrepotools/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtrepotools/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtscxml/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtscxml/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtscxml/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtsensors/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtsensors/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtsensors/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtserialbus/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtserialbus/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtserialbus/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtserialport/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtserialport/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtserialport/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtshadertools/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtshadertools/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtshadertools/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtsvg/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtsvg/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtsvg/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qttools/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qttools/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qttools/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qttranslations/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qttranslations/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qttranslations/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtvirtualkeyboard/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtvirtualkeyboard/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtvirtualkeyboard/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtwayland/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtwayland/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtwayland/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtwebchannel/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtwebchannel/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtwebchannel/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtwebengine/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtwebengine/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtwebengine/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtwebsockets/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtwebsockets/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtwebsockets/hooks/pre-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/gerrit_commit_msg_hook
      as D:\Repo\tmp\qt\.git\modules\qtwebview/hooks/commit-msg ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/git_post_commit_hook
      as D:\Repo\tmp\qt\.git\modules\qtwebview/hooks/post-commit ...
Aliasing D:\Repo\tmp\qt/qtrepotools/git-hooks/clang-format-pre-commit
      as D:\Repo\tmp\qt\.git\modules\qtwebview/hooks/pre-commit ...

D:\Repo\tmp\qt>git status
Refresh index: 100% (1235/1235), done.
On branch 6.2.4
Your branch is up to date with 'origin/6.2.4'.

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
        modified:   qtlocation (new commits)
        modified:   qtspeech (new commits)

Untracked files:
  (use "git add <file>..." to include in what will be committed)
        qtgrpc/
        qthttpserver/
        qtlanguageserver/
        qtquick3dphysics/
        qtquickeffectmaker/

no changes added to commit (use "git add" and/or "git commit -a")

D:\Repo\tmp\qt>
-------------- next part --------------
D:\Repo\tmp\qt>git status
On branch 6.5.2
Your branch is up to date with 'origin/6.5.2'.

nothing to commit, working tree clean

D:\Repo\tmp\qt>git checkout 6.2.4
Switched to branch '6.2.4'
M       qt3d
M       qt5compat
M       qtactiveqt
M       qtbase
M       qtcharts
M       qtcoap
M       qtconnectivity
M       qtdatavis3d
M       qtdeclarative
M       qtdoc
M       qtimageformats
M       qtlocation
M       qtlottie
M       qtmqtt
M       qtmultimedia
M       qtnetworkauth
M       qtopcua
M       qtpositioning
M       qtqa
M       qtquick3d
M       qtquicktimeline
M       qtremoteobjects
M       qtrepotools
M       qtscxml
M       qtsensors
M       qtserialbus
M       qtserialport
M       qtshadertools
M       qtspeech
M       qtsvg
M       qttools
M       qttranslations
M       qtvirtualkeyboard
M       qtwayland
M       qtwebchannel
M       qtwebengine
M       qtwebsockets
M       qtwebview
Your branch is up to date with 'origin/6.2.4'.

D:\Repo\tmp\qt>git status
On branch 6.2.4
Your branch is up to date with 'origin/6.2.4'.

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
        modified:   qt3d (new commits)
        modified:   qt5compat (new commits)
        modified:   qtactiveqt (new commits)
        modified:   qtbase (new commits)
        modified:   qtcharts (new commits)
        modified:   qtcoap (new commits)
        modified:   qtconnectivity (new commits)
        modified:   qtdatavis3d (new commits)
        modified:   qtdeclarative (new commits)
        modified:   qtdoc (new commits)
        modified:   qtimageformats (new commits)
        modified:   qtlocation (new commits)
        modified:   qtlottie (new commits)
        modified:   qtmqtt (new commits)
        modified:   qtmultimedia (new commits)
        modified:   qtnetworkauth (new commits)
        modified:   qtopcua (new commits)
        modified:   qtpositioning (new commits)
        modified:   qtqa (new commits)
        modified:   qtquick3d (new commits)
        modified:   qtquicktimeline (new commits)
        modified:   qtremoteobjects (new commits)
        modified:   qtrepotools (new commits)
        modified:   qtscxml (new commits)
        modified:   qtsensors (new commits)
        modified:   qtserialbus (new commits)
        modified:   qtserialport (new commits)
        modified:   qtshadertools (new commits)
        modified:   qtspeech (new commits)
        modified:   qtsvg (new commits)
        modified:   qttools (new commits)
        modified:   qttranslations (new commits)
        modified:   qtvirtualkeyboard (new commits)
        modified:   qtwayland (new commits)
        modified:   qtwebchannel (new commits)
        modified:   qtwebengine (new commits)
        modified:   qtwebsockets (new commits)
        modified:   qtwebview (new commits)

no changes added to commit (use "git add" and/or "git commit -a")

D:\Repo\tmp\qt>git submodule update --recursive
Submodule path 'qt3d': checked out 'ba60c55bd21ac774154eadbbb7b1573674668a80'
Submodule path 'qt5compat': checked out 'd2f614a177ed8c1f7237a2c2b2a530d23bebace8'
Submodule path 'qtactiveqt': checked out 'a7d9fbfb46c46c95b468ee01f6fc31d7d82adfc3'
Submodule path 'qtbase': checked out 'd3b5353380797f3b67599ccebc5dc916057681e5'
Submodule path 'qtcharts': checked out 'bc4474149b50a4249a490cd541dabb77d1285576'
Submodule path 'qtcoap': checked out '66b731d0f2f3ec45d535a98e3859bf78e5ede8ed'
Submodule path 'qtconnectivity': checked out '1b8b3b251407e00423f1a58a5ee86c4d3e9901ec'
Submodule path 'qtdatavis3d': checked out 'b0d49a7eed0aa4164168b554519e3fe16d38e7bb'
Submodule path 'qtdeclarative': checked out '26140891b4b77e2e8292f75e9d20f5798a2bd247'
Submodule path 'qtdeclarative/tests/auto/qml/ecmascripttests/test262': checked out '4dad98d63c279b989fdb48006fbd1db8ee27bc7f'
Submodule path 'qtdoc': checked out '4bd64592aad85fb02fa6dd7b0e40d9d0b7c959cf'
Submodule path 'qtimageformats': checked out '2dd8048d64de5ca7fcc817f5afdbd5fc368dd1f0'
Submodule path 'qtlottie': checked out '93601e37912efefc93a850e58861ffe8d4d604fa'
Submodule path 'qtmqtt': checked out '1db8babfef79f91e4a457633cc4e659b093d0e02'
Submodule path 'qtmultimedia': checked out '79739672e6a83b4095d0952068354cef9ff3495c'
Submodule path 'qtnetworkauth': checked out '97e6076031f7bc223e4ea68435e3d3d35ebadbb5'
Submodule path 'qtopcua': checked out '3eeb1db3b3687ad1110cb491b9d7f7d5fbed383d'
Submodule path 'qtpositioning': checked out '662461c306a17660fe94a6c3450bb7312423ee9b'
Submodule path 'qtqa': checked out '9a4e92089d4c23d8b1cde07ec5596f3611b0e362'
Submodule path 'qtquick3d': checked out 'ddff44aef63854644809a06d4fadf4f97833ce81'
Submodule path 'qtquick3d/src/3rdparty/assimp/src': checked out '5a38cd0a03015ceabbd5bc6efb0730dde1ef74e5'
Submodule path 'qtquicktimeline': checked out '764291bb8dcded2f4793f6fa48cfd3493d644135'
Submodule path 'qtremoteobjects': checked out '923c6dee3f0af69f848bf3bd4575e7dc8e0dc49e'
Submodule path 'qtrepotools': checked out '08ca9944715735726d36f7d82123dc299f73335d'
Submodule path 'qtscxml': checked out 'a3e8bf11424b306e38c8c7b114d2d6c600e0d3b4'
Submodule path 'qtsensors': checked out '45dc7967824262923694d83e36f94b4d6cc273b9'
Submodule path 'qtserialbus': checked out '58eb2dad75116ee51bd2939eb92202ec4f02a83a'
Submodule path 'qtserialport': checked out 'f41e290b17e68764da0bf88ded99f2180d79b83b'
Submodule path 'qtshadertools': checked out '47011f48f747a8855b0c4e9b7fdadb32ead254da'
Submodule path 'qtsvg': checked out '0237fcf58c8978c35386b2b7d38f306da0f20af2'
Submodule path 'qttools': checked out '2a982eb06ff9c35b48c969089e17c05f8248b57c'
Submodule path 'qttools/src/assistant/qlitehtml': checked out '4931b7aa30f256c20573d283561aa432fecf8f38'
Submodule path 'qttools/src/assistant/qlitehtml/src/3rdparty/litehtml': checked out '6236113734bb0a28467e5999e86fdd2834be8e01'
Submodule path 'qttranslations': checked out 'eb6cc76cb8594080fc30abe44a497b62619691be'
Submodule path 'qtvirtualkeyboard': checked out 'd21c005345ea695a90dd980609762cb7e1f2f697'
Submodule path 'qtwayland': checked out 'b840a91bf5f4068efe3110411c156c17b869142c'
Submodule path 'qtwebchannel': checked out 'd6c00c7be359fe25846ed3d95f96afa36c4d11b1'
Submodule path 'qtwebengine': checked out 'acb01cacff784d51f97e8be16e57f89ebc2722f9'
Submodule path 'qtwebengine/src/3rdparty': checked out 'b33b4266df8c333d3d273ae4665d6b322eee33c6'
Submodule path 'qtwebsockets': checked out '6dd991743fbd5b997392ac24997f97822df82053'
Submodule path 'qtwebview': checked out '4648d5d9ad50171a9f6e8fe8803cc92c12740baf'

D:\Repo\tmp\qt>git clean -xfdf && git submodule foreach --recursive git clean -xfdf
Entering 'qt3d'
Entering 'qt3d/src/3rdparty/assimp/src'
Entering 'qt5compat'
Entering 'qtactiveqt'
Entering 'qtbase'
Entering 'qtcanvas3d'
Entering 'qtcharts'
Entering 'qtcoap'
Entering 'qtconnectivity'
Entering 'qtdatavis3d'
Entering 'qtdeclarative'
Entering 'qtdeclarative/tests/auto/qml/ecmascripttests/test262'
Entering 'qtdoc'
Entering 'qtfeedback'
Entering 'qtgamepad'
Entering 'qtimageformats'
Entering 'qtlocation'
Entering 'qtlottie'
Entering 'qtmqtt'
Entering 'qtmultimedia'
Entering 'qtnetworkauth'
Entering 'qtopcua'
Entering 'qtpim'
Entering 'qtpositioning'
Entering 'qtqa'
Entering 'qtquick3d'
Entering 'qtquick3d/src/3rdparty/assimp/src'
Entering 'qtquicktimeline'
Entering 'qtremoteobjects'
Entering 'qtrepotools'
Entering 'qtscxml'
Entering 'qtsensors'
Entering 'qtserialbus'
Entering 'qtserialport'
Entering 'qtshadertools'
Entering 'qtspeech'
Entering 'qtsvg'
Entering 'qtsystems'
Entering 'qttools'
Entering 'qttools/src/assistant/qlitehtml'
Entering 'qttools/src/assistant/qlitehtml/src/3rdparty/litehtml'
Entering 'qttranslations'
Entering 'qtvirtualkeyboard'
Entering 'qtwayland'
Entering 'qtwebchannel'
Entering 'qtwebengine'
Entering 'qtwebengine/src/3rdparty'
Entering 'qtwebglplugin'
Entering 'qtwebsockets'
Entering 'qtwebview'
Entering 'qtxmlpatterns'
Entering 'qtxmlpatterns/tests/auto/3rdparty/testsuites'

D:\Repo\tmp\qt>git status
On branch 6.2.4
Your branch is up to date with 'origin/6.2.4'.

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
        modified:   qtlocation (new commits)
        modified:   qtspeech (new commits)

no changes added to commit (use "git add" and/or "git commit -a")

D:\Repo\tmp\qt>


More information about the Development mailing list