From a840104a70ba7aa5aa33442924efde15d7ab0d8e Mon Sep 17 00:00:00 2001 From: Danil Antoshkin Date: Tue, 12 Jun 2018 16:36:34 +0000 Subject: [PATCH] Updated the tag used to build --- docs/content/doc/installation/from-source.en-us.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/doc/installation/from-source.en-us.md b/docs/content/doc/installation/from-source.en-us.md index 3b6d973d4..6ebe57a9c 100644 --- a/docs/content/doc/installation/from-source.en-us.md +++ b/docs/content/doc/installation/from-source.en-us.md @@ -81,7 +81,7 @@ with master, skip to the [build section](#build). To work with tagged releases, the following commands can be used: ``` $ git branch -a -$ git checkout v1.0 +$ git checkout v1.4.2 ``` To validate a Pull Request, first enable the new branch (`xyz` is the PR id; for example @@ -91,14 +91,14 @@ To validate a Pull Request, first enable the new branch (`xyz` is the PR id; for $ git fetch origin pull/xyz/head:pr-xyz ``` -To build Gitea from source at a specific tagged release (like v1.0.0), list the available +To build Gitea from source at a specific tagged release (like v1.4.0), list the available tags and check out the specific tag. List available tags with the following. ``` $ git tag -l -$ git checkout v1.0.0 # or git checkout pr-xyz +$ git checkout v1.4.0 # or git checkout pr-xyz ``` ## Build