GitQlient Installation Instructions
Building
If you just want to play with it a bit with GitQlient or just build it for your own environment, you will need to do:
-
Clone the repository:
git clone https://github.com/francescmm/GitQlient.git
-
Go into the GitQlient project folder and initialize the submodules:
git submodule update --init --recursive
-
Or use QtCreator or run qmake in the main repository folder (where GitQlient.pro is located):
qmake GitQlient.pro
If you want to build GitQlient in debug mode, write this instead:
qmake CONFIG+=debug GitQlient.pro
-
Run make in the main repository folder to compile the code:
make