From 2ebe6d1c184352a3826f0fe85c46acf42c65c0e4 Mon Sep 17 00:00:00 2001 From: finalcircuit Date: Wed, 2 Jan 2019 15:26:14 +0000 Subject: [PATCH] Reinstated the instructions (which do work, despite the deletion message) for checking out the current branch but retained the replacement instructions for checking out a specific tagged release (which will need updating here with every minor release version). --- ...iling-qBittorrent-on-Debian-and-Ubuntu.mediawiki | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Compiling-qBittorrent-on-Debian-and-Ubuntu.mediawiki b/Compiling-qBittorrent-on-Debian-and-Ubuntu.mediawiki index ec317d5..0247c5b 100644 --- a/Compiling-qBittorrent-on-Debian-and-Ubuntu.mediawiki +++ b/Compiling-qBittorrent-on-Debian-and-Ubuntu.mediawiki @@ -53,9 +53,18 @@ For more information on building libtorrent, see [https://www.libtorrent.org/bui First, obtain the qBittorrent source code.
Either download and extract a .tar archive from [https://sourceforge.net/projects/qbittorrent/files/qbittorrent/ Sourceforge] or clone the git repository: git clone https://github.com/qbittorrent/qBittorrent + +If you clone the git repository and want to use the stable current version (rather than the development version which may not work), you need to checkout the stable branch. You can do this in two ways: + +By checking out the stable branch (4.1.x at the time of writing): + cd qBittorrent -If you clone the git repository and want to use the stable current version (rather than the development version), you need to checkout the stable branch (4.1.5 as of writing). - git checkout release-4.1.5 + git checkout v4_1_x + +Or by checking out the latest tagged stable release (4.1.5 at the time of writing): + + cd qBittorrent + git checkout release-4.1.5 Enter the folder in a new terminal window and run: ./configure