Git 本地项目关联远程仓库
本地
本地已有项目
● 项目 07.GitLocalTest 包含有一个js
○ test.js
远程仓库
● 远程仓库地址
○ https://github.com/Sonnenlicht77/gitTest.git
○ 仓库只有一个 readme.md
关联
1.本地
1.1 本地仓库
● git init
● git add .
● git commit -m "初始化本地仓库"
此时,只需将本地仓库和远程仓库连接起来即可。
1.2 连接 远程仓库
● git remote add origin https://github.com/Sonnenlicht7