-
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/v6.0.x-from-git.md: added file for v6.0.x series
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Download Sources of Kamailio v6.0.x from GIT Repository | ||
|
||
Instructions to download sources from GIT repository, specific for | ||
stable branch 6.0 (release series v6.0.x). | ||
|
||
## Kamailio v6.0.x | ||
|
||
Direct download of sources from GIT for latest Kamailio v6.0.x. | ||
|
||
``` | ||
Check failure on line 10 in docs/download/v6.0.x-from-git.md
|
||
git clone --depth 1 --no-single-branch https://github.com/kamailio/kamailio kamailio | ||
cd kamailio | ||
git checkout -b 6.0 origin/6.0 | ||
``` | ||
|
||
*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 6.0 checkout: | ||
|
||
``` | ||
Check failure on line 21 in docs/download/v6.0.x-from-git.md
|
||
git clone --depth 1 --branch 6.0 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.* |