Development/Tutorials/Git/kde-qt: Difference between revisions
< Development | Tutorials
(Created page with '[http://gitorious.org/+kde-developers/qt/kde-qt kde-qt] is KDE’s copy of Qt, containing the latest release, plus patches for Qt that haven’t been accepted (yet) by Qt Softwar...') |
m (moved Archive:Development/Tutorials/Git/kde-qt to Development/Tutorials/Git/kde-qt: revert) |
||
(5 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{warning|This page is yet to be reviewed for changes required by the migration to Git. Information and commands on this page may no longer be valid and should be used with care. Please see the [[Development/Git|KDE Git hub page]] for more details. }} | |||
[http://gitorious.org/+kde-developers/qt/kde-qt kde-qt] is KDE’s copy of Qt, containing the latest release, plus patches for Qt that haven’t been accepted (yet) by Qt Software. | [http://gitorious.org/+kde-developers/qt/kde-qt kde-qt] is KDE’s copy of Qt, containing the latest release, plus patches for Qt that haven’t been accepted (yet) by Qt Software. | ||
Line 5: | Line 7: | ||
===Updating=== | ===Updating=== | ||
To follow the latest recommended qt, use the master branch. If you downloaded it after october 2009, it should be on master | To follow the latest recommended qt, use the master branch. If you downloaded it after october 2009, it should be on master already. If not, run these commands once: | ||
< | <syntaxhighlight lang="text"> | ||
git fetch | |||
git checkout -b master origin/master | git checkout -b master origin/master | ||
</ | </syntaxhighlight> | ||
now, to update, all you need is | now, to update, all you need is | ||
< | <syntaxhighlight lang="text"> | ||
git pull | git pull | ||
</ | </syntaxhighlight> |
Latest revision as of 19:32, 24 March 2012
Warning
This page is yet to be reviewed for changes required by the migration to Git. Information and commands on this page may no longer be valid and should be used with care. Please see the KDE Git hub page for more details.
kde-qt is KDE’s copy of Qt, containing the latest release, plus patches for Qt that haven’t been accepted (yet) by Qt Software.
Creating the repository
See Getting_Started/Build/KDE4/Prerequisites#Qt.
Updating
To follow the latest recommended qt, use the master branch. If you downloaded it after october 2009, it should be on master already. If not, run these commands once:
git fetch
git checkout -b master origin/master
now, to update, all you need is
git pull