添加Webrtc远端仓库

一、进入本地本地仓库添加webrtc仓库

下载本地仓库:

git clone https//本地仓库地址//webrtc.git

添加Webrtc远端仓库

查看下远程仓库

git remote -v

添加Webrtc远端仓库

添加webrtc远程仓库

git remote add webrtc  https//本地仓库地址//webrtc.git

添加webrtc branch分支,打开.git\config,添加

fetch = +refs/branch-heads/*:refs/remotes/origin/*

添加Webrtc远端仓库

 更新webrtc仓库

git fetch webrtc

添加Webrtc远端仓库

 

检查下分支:

git branch -a

此时所有的webrtc代码均在我们的仓库了

 添加Webrtc远端仓库

 

上一篇:vue 组件化


下一篇:pandas使用reset_index函数将dataframe的索引列转化为数据列并自定义转化后数据列的名称(change index to column and rename column name