本地部署
本地文件部署到github
- 设置username和email
git config --global user.name "your name"
git config --global user.email "[email protected]"
从github上克隆项目再同步到github
git clone URL
- 记得clone带.git的文件
添加远程仓库
git remote add origin [email protected]:yourName/yourRepo.git
- 如果出现
fatal: remote origin already exists.
- git clone 时会在本地创建一个 origin 仓库
- 可以删除原来的origin仓库
git remote rm origin
- 也可以创建一个其他名称的远程仓库
- 例如
git remote add origin1 [email protected]:yourName/yourRepo.git
原文地址:https://www.cnblogs.com/coder-tcm/p/11408920.html
时间: 2024-10-10 16:34:43