标签:tail rem 如何 class blank 本地 bsp style one
代码从远程clone代码到本地,此时你本地代码链接一个远程仓库。比如地址:https://github.com/deerlin/cms-group.git
如需同时链接两个,可以再建立一个远程仓库。比如地址:https://gitee.com/deerlin/cms-group.git
git init git config --global user.name "username" git config --global user.email "email"
git remote add github https://github.com/deerlin/cms-group.git //github 相当于别名,仓储名称
git remote add gitee https://gitee.com/deerlin/cms-group.git //gitee 相当于别名,仓储名称
git pull gitee master or git pull gitee
git pull github master or git pull github
git push gitee
git push github
标签:tail rem 如何 class blank 本地 bsp style one
原文地址:https://www.cnblogs.com/DeerLin/p/14419039.html