文章目录
一、初始化git仓库
- 在自己的项目中,命令行中输入
shell
git init
二、gitee创建仓库
- 新建仓库
- 设置仓库参数,设置5个参数其他不管使用默认的就行
三、输入自己仓库的地址
- 这个url链接就选择你自己仓库的
shell
git remote add origin https://gitee.com/xxx-xxxx/ceshi.git
shell
git remote add origin https://gitee.com/BFstudytoto/kaoshibao.git
四、在添加所修改的文件
shell
git add .
可能的错误
- 执行
shell
git config --global core.autocrlf true
五、合并需上传文件
shell
git commit -m "第一次上传"
六、上传
shell
git push origin master