Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
胡斌
/
srs
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
winlin
2014-03-30 19:09:04 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b8f6ef59c5f59b9ea1ab029fd6b7cec949ab29ca
b8f6ef59
1 parent
150d3c38
update readme, refine the chinese summary
隐藏空白字符变更
内嵌
并排对比
正在显示
2 个修改的文件
包含
20 行增加
和
4 行删除
README.md
trunk/scripts/csdn.mirror.sh
README.md
查看文件 @
b8f6ef5
...
...
@@ -4,13 +4,13 @@
下载发布版(国内阿里云镜像):
[
Centos6-x86_64
](
http://demo.chnvideo.com:8085/srs/releases/files/SRS-CentOS6-x86_64-0.9.30.zip
)
其他
[
more...
](
http://demo.chnvideo.com:8085/srs/releases/
)
获得源码(github):
[
simple-rtmp-server
](
https://github.com/winlinvip/simple-rtmp-server
)
获得源码(github):
[
https://github.com/winlinvip/
simple-rtmp-server
](
https://github.com/winlinvip/simple-rtmp-server
)
```
bash
git clone https://github.com/winlinvip/simple-rtmp-server.git
```
获得源码(国内CSDN镜像):
[
simple-rtmp-server
](
https://code.csdn.net/winlinvip/srs-csdn/events
)
获得源码(国内CSDN镜像):
[
https://code.csdn.net/winlinvip/srs-csdn
](
https://code.csdn.net/winlinvip/srs-csdn
)
```
bash
git clone https://code.csdn.net/winlinvip/srs-csdn.git
...
...
trunk/scripts/csdn.mirror.sh
查看文件 @
b8f6ef5
...
...
@@ -4,7 +4,8 @@ echo "更新CSDN镜像的脚本"
# 创建CSDN镜像的过程如下:
# 1. 在CSDN上创建项目,从https://github.com/winlinvip/simple-rtmp-server拷贝过来。
# 2. 在本地虚拟机上:git clone git@code.csdn.net:winlinvip/srs-csdn.git
# 2. 在本地虚拟机上:
# git clone git@code.csdn.net:winlinvip/srs-csdn.git
# 3. 创建同步的branch:
# git remote add upstream https://github.com/winlinvip/simple-rtmp-server.git
# git fetch upstream
...
...
@@ -28,7 +29,22 @@ ret=$?; if [[ $ret -ne 0 ]]; then exit $ret; fi
ok_msg
"导入脚本成功"
git remote -v|grep code.csdn.net >/dev/null 2>&1
ret
=
$?
;
if
[[
0 -ne
$ret
]]
;
then
failed_msg
"当前分支不是CSDN镜像"
;
exit
0;
fi
ret
=
$?
;
if
[[
0 -ne
$ret
]]
;
then
failed_msg
"当前分支不是CSDN镜像"
;
cat
<<END
创建CSDN镜像的过程如下:
1. 在CSDN上创建项目,从https://github.com/winlinvip/simple-rtmp-server拷贝过来。
2. 在本地虚拟机上:
git clone git@code.csdn.net:winlinvip/srs-csdn.git
3. 创建同步的branch:
git remote add upstream https://github.com/winlinvip/simple-rtmp-server.git
git fetch upstream
git checkout upstream/master -b srs.master
4. 执行本同步更新脚本,更新。
bash scripts/csdn.mirror.sh
END
exit
0;
fi
for
((
;;
))
;
do
git checkout srs.master
&&
git pull
...
...
请
注册
或
登录
后发表评论