Qt for OpenHarmony Source Code: Difference between revisions
Jump to navigation
Jump to search
(create the source code page of Qt for OH) |
(update the description of branches) |
||
Line 1: | Line 1: | ||
=== | == Gerrit Introduction == | ||
The Qt source code is hosted on Gerrit for code review and version control. The Qt source code is hosted on Gerrit for code review and version control. All needed information about how to work with Gerrit is written on the following pages: | |||
[[Setting up Gerrit]] | |||
[[Gerrit Introduction]] | |||
== Code Management == | |||
# Access and login to: [[/codereview.qt-project.org/|https://codereview.qt-project.org]]. | |||
# Click on the "Settings" in the upper right corner to open the settings page. | |||
# Click on "Settings" -> "HTTP Credentials" -> "GENERATE NEW PASSWORD" to generate a new password. Save the password for later use with "git clone". | |||
# Access [[/codereview.qt-project.org/admin/repos/qt/tqtc-qt5|https://codereview.qt-project.org/admin/repos/qt/tqtc-qt5]], and copy the git repository address. | |||
# cd tqtc-qt5 | |||
# main release branch | |||
{| class="wikitable" | |||
|+ | |||
!branch name | |||
!description | |||
!frequency | |||
!Contents | |||
|- | |||
|tqtc/harmonyos-5.12.12 | |||
|Release branch for harmonyos, based on Qt5.12.12 | |||
|almost every day | |||
|System Functionality Adaptation & bug fixing | |||
|- | |||
|tqtc/harmonyos-5.15.16 | |||
|Release branch for harmonyos, based on Qt5.15.16 | |||
|one month | |||
|Synchronization of 5.12.12 changes | |||
|- | |||
| | |||
| | |||
| | |||
| | |||
|} | |||
git checkout branch tqtc/harmonyos-5.12.12 or git checkout tqtc/harmonyos-5.15.16 | |||
git submodule update --init --recursive |
Revision as of 09:35, 23 January 2025
Gerrit Introduction
The Qt source code is hosted on Gerrit for code review and version control. The Qt source code is hosted on Gerrit for code review and version control. All needed information about how to work with Gerrit is written on the following pages:
Code Management
- Access and login to: https://codereview.qt-project.org.
- Click on the "Settings" in the upper right corner to open the settings page.
- Click on "Settings" -> "HTTP Credentials" -> "GENERATE NEW PASSWORD" to generate a new password. Save the password for later use with "git clone".
- Access https://codereview.qt-project.org/admin/repos/qt/tqtc-qt5, and copy the git repository address.
- cd tqtc-qt5
- main release branch
branch name | description | frequency | Contents |
---|---|---|---|
tqtc/harmonyos-5.12.12 | Release branch for harmonyos, based on Qt5.12.12 | almost every day | System Functionality Adaptation & bug fixing |
tqtc/harmonyos-5.15.16 | Release branch for harmonyos, based on Qt5.15.16 | one month | Synchronization of 5.12.12 changes |
git checkout branch tqtc/harmonyos-5.12.12 or git checkout tqtc/harmonyos-5.15.16
git submodule update --init --recursive