Skip to content

Commit

Permalink
download/v5.8.x-from-git: added variant for direct git branch 5.8 che…
Browse files Browse the repository at this point in the history
…ckout
  • Loading branch information
miconda committed Mar 6, 2024
1 parent 4cdac74 commit b0a5078
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions docs/download/v5.8.x-from-git.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,21 @@ stable branch 5.8 (release series v5.8.x).

Direct download of sources from GIT for latest Kamailio v5.8.x.

git clone --depth 1 --no-single-branch https://github.com/kamailio/kamailio kamailio
cd kamailio
git checkout -b 5.8 origin/5.8
```

Check failure on line 10 in docs/download/v5.8.x-from-git.md

View workflow job for this annotation

GitHub Actions / check-format

Fenced code blocks should have a language specified

docs/download/v5.8.x-from-git.md:10 MD040/fenced-code-language Fenced code blocks should have a language specified [Context: "```"] https://github.com/DavidAnson/markdownlint/blob/v0.33.0/doc/md040.md
git clone --depth 1 --no-single-branch https://github.com/kamailio/kamailio kamailio
cd kamailio
git checkout -b 5.8 origin/5.8
```

*Note: if your git client version does not support **–no-single-branch**
command line parameter, then just remove it.*

Or, for newer git versions, with direct branch 5.8 checkout:

```

Check failure on line 21 in docs/download/v5.8.x-from-git.md

View workflow job for this annotation

GitHub Actions / check-format

Fenced code blocks should have a language specified

docs/download/v5.8.x-from-git.md:21 MD040/fenced-code-language Fenced code blocks should have a language specified [Context: "```"] https://github.com/DavidAnson/markdownlint/blob/v0.33.0/doc/md040.md
git clone --depth 1 --branch 5.8 https://github.com/kamailio/kamailio kamailio
cd kamailio
```

*Note: if you want to have the full commit history, then remove
**--depth 1** command line parameter.*

0 comments on commit b0a5078

Please sign in to comment.