1、在项目的根目录下执行$ git init
2、添加远程仓库$ git remote add origin 仓库地址
3、将项目文件添加到本地暂存区$ git add .
4、添加暂存区文件到Git本地仓库$ git commit -m "<提交描述>"
5、将远程仓库拉取pull下来$ git pull origin master
如果你git pull或者git push报fatal: refusing to merge unrelated histories【git 初始化项目步骤】6、将文件push到远程仓库
在你操作命令后面加--allow-unrelated-histories
例如:
git pull origin master --allow-unrelated-histories
$ git push -u origin master
推荐阅读
- transformer|Swin-Transformer代码讲解-Video Swin-Transformer
- git使用技巧备忘(持续更新。。。)
- git 高级操作
- 同步GIT仓库的操作 -- pull命令
- git|git简单命令
- Git|Tomcat 自定义错误页面(例如404页面等等)
- 本地项目添加到gitee仓库管理
- centos|搭建Git服务器
- Git clone~fatal: protocol '?http' is not supported。解决办法。
- github开通,史上最全demo集合,各种demo持续更新中