[Qt-jambi-interest] Git guide
Francis Galiegue
fgaliegue at gmail.com
Wed Dec 23 13:12:10 CET 2009
On Wed, Dec 23, 2009 at 9:28 AM, Helge Fredriksen <hf at poseidon.no> wrote:
>
>> Okay, that is good enough to start from.
>>
> As a follow up, I made this "cookbook" on how to perform all the steps.
> These are based upon my own work and testing with QtJambi:
>
> http://qt.gitorious.org/qt-jambi/pages/BuildingFromGit#Making+your+very+own+4.6+QtJambi+build+from+the+sources
>
> Francis, could you look over the git steps and check if I'm getting it
> right :-)
>
Nearly so ;) There's only one error: you should cd .. before cloning
qt-jambi. In fact, I'd do:
mkdir src
cd src
# clone qt
cd ..
git clone git://gitorious.org/qt-jambi/community-port-to-4_6 qt-jambi
cd qt-jambi
# compile qt-jambi
Also, this is true that you can checkout a remote branch directly
(this is what you do for qt), but you won't be able to git pull later,
you must create a tracking branch before building qt:
git branch -t 4.6 origin/4.6
git checkout 4.6
git pull # shouldn't be necessary right after the clone, but it never hurts
I have also looked at my git guide again. Gosh it's long :( I should
shorten it. The main problem I have right now is I can't seem to
create tables with Markdown. That sucks :/
--
Francis Galiegue, fgaliegue at gmail.com
"It seems obvious [...] that at least some 'business intelligence'
tools invest so much intelligence on the business side that they have
nothing left for generating SQL queries" (Stéphane Faroult, in "The
Art of SQL", ISBN 0-596-00894-5)
More information about the Qt-jambi-interest
mailing list