Git 之 已有项目创建 git 仓库
- 前言
- 一、现在 github/gitee 中创建仓库
- 二、在项目的文件夹当中 git bash here
- 1.git init
- 2. git remote add origin + 仓库地址
- 3. git pull origin master
- 4. git add . + git commit -m '' + git push -u origin master
前言
项目已经开始写了,但是还没有创建 git 仓库
一、现在 github/gitee 中创建仓库
然后拿到仓库的地址,我这里用的是 SSH
二、在项目的文件夹当中 git bash here
1.git init
2. git remote add origin + 仓库地址
git remote add origin git@gitee.com:halloyo/guli-college.git
3. git pull origin master
这里如果报错 : fatal: couldn't find remote ref master
可以忽略不计