Page 2 of 2

Re: Goldendict git1.0.1-792 issues (IBUS, boxes, quitting)

PostPosted: Tue May 28, 2013 4:27 pm
by gunnvorwagner
help the noob:

git pull means executing:

git clone https://github.com/goldendict/goldendict.git

right?

Re: Goldendict git1.0.1-792 issues (IBUS, boxes, quitting)

PostPosted: Tue May 28, 2013 4:29 pm
by Tvangeste
gunnvorwagner wrote:git pull means executing:
git clone https://github.com/goldendict/goldendict.git
right?

Nope. If you already have a cloned repository, just go there and invoke:

Code: Select all
git pull

Re: Goldendict git1.0.1-792 issues (IBUS, boxes, quitting)

PostPosted: Tue May 28, 2013 4:31 pm
by gunnvorwagner
ultra noob asks:

do I have to qmake & make again?

Re: Goldendict git1.0.1-792 issues (IBUS, boxes, quitting)

PostPosted: Tue May 28, 2013 4:36 pm
by Tvangeste
gunnvorwagner wrote:do I have to qmake & make again?

Yes. Not always it is required, but to make sure you're building the right way it is recommended to do that every time you update the sources via git pull.

In fact, if you wish to be extra careful, it also makes sense to clean the previously built results via `make clean`, like this:

Code: Select all
git pull
qmake
make clean
make


Most of the time I omit `make clean` to speed up the build significantly. But when I release a development build for other users I always clean first and build everything from scratch.