-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
download/v5.8.x-from-git: added variant for direct git branch 5.8 che…
…ckout
- Loading branch information
Showing
1 changed file
with
12 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 GitHub Actions / check-formatFenced code blocks should have a language specified
|
||
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 GitHub Actions / check-formatFenced code blocks should have a language specified
|
||
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.* |