On Monday 20 April 2009 19:18:25 Mr Coffee wrote: > Hi, > > How do you checkout a snapshot of qt-4.5 using git? > > After issuing "git clone git://labs.trolltech.com/qt-snapshot", > it seems that qt-4..6 is the only available branch. > > How to change the snapshot to 4.5? git branch does only show on branch: > master.
Hi, $ git clone git://labs.trolltech.com/qt-snapshot was the right thing to do now you can do $ cd qt-snapshot $ git checkout origin/4.5 -b 4.5 This command will basically checkout the 4.5 branch from origin into a new local branch called "4.5" when you want to update, you can do $ git pull Hope this helps -- Olivier _______________________________________________ Qt4-preview-feedback mailing list [email protected] http://lists.trolltech.com/mailman/listinfo/qt4-preview-feedback
