-
git全局设置
-
git config --global user.name ‘非池中物’
-
git cinfig --global user.email '103058 @qq.com'
-
-
创建git仓库
-
在码云创建仓库
-
在本地创建文件夹
-
右键打开Git Bush Here
-
初始化仓库 git init
-
git add .
-
git commit -m 'first commit'
-
git remote add origin https://
-
git push -u origin master