## 远程仓库的使用
> 在多人协作的时候 ,我们肯定需要一个远程仓库 , 这样我们才可以和不同地域的人 , 进行协同开发
### 查看当前的远程仓库
~~~
git remote -v
~~~
### 添加一个远程仓库
~~~
git remote add zeno https://git.oschina.net/zhuyongit/CustomButton.git
~~~
> 当我们添加了一个远程库 , 我们就可以使用`git remote -v`来查看我们添加的远程库的信息