Go back to gitlab-workhorse 0.7.1

We found out that 0.7.2 breaks shallow `git clone`. GitLab 8.7 will
work fine with gitlab-workhorse 0.7.1 too.
This commit is contained in:
Jacob Vosmaer 2016-04-11 17:03:27 +02:00
parent 4087bd16e8
commit ca0b3ea1f1
3 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
0.7.2 0.7.1

View File

@ -352,7 +352,7 @@ GitLab Shell is an SSH access and repository management software developed speci
cd /home/git cd /home/git
sudo -u git -H git clone https://gitlab.com/gitlab-org/gitlab-workhorse.git sudo -u git -H git clone https://gitlab.com/gitlab-org/gitlab-workhorse.git
cd gitlab-workhorse cd gitlab-workhorse
sudo -u git -H git checkout v0.7.2 sudo -u git -H git checkout v0.7.1
sudo -u git -H make sudo -u git -H make
### Initialize Database and Activate Advanced Features ### Initialize Database and Activate Advanced Features

View File

@ -58,7 +58,7 @@ GitLab 8.1.
```bash ```bash
cd /home/git/gitlab-workhorse cd /home/git/gitlab-workhorse
sudo -u git -H git fetch --all sudo -u git -H git fetch --all
sudo -u git -H git checkout v0.7.2 sudo -u git -H git checkout v0.7.1
sudo -u git -H make sudo -u git -H make
``` ```