Git 本地与远程仓库连接

git init ----- 初始化 

git remote add origin xxxxxxxxxx地址 ----- 与远程仓库连接

git remote show origin ----- 查看是否连接成功

连接成功后就可以直接拉了

git pull origin branchName

git checkout -b localBranchName origin/originBranchName

原文地址:https://www.cnblogs.com/qlb-7/p/13161653.html