git初始化

备录

新增的文件夹下,git bash输入

初始化

git init

设置git地址

git remote add origin https://gitee.com/xxxxx.git

拉取master

git pull origin master

关联分支

git push --set-upstream origin master

原文地址:https://www.cnblogs.com/huanyun/p/14182818.html