【Git推送本地项目到远程仓库】
Git推送本地项目到远程仓库
执行步骤
1、初始化仓库
git init
2、添加文件
git add xxx.xx //添加文件到本地仓库
git add . //将本地项目的所有文件添加到暂存区,小数点 “.” 表示添加文件夹下的所有文件
3、添加描述信息
git commit -m "提交文件"
4、关联到远程仓库
git remote add origin http://xxxxxx (远程仓库地址)
5、拉取远程仓库代码到本地(一般需要先在远程仓库建master分支,否则会报错)
git pull origin master --allow-unrelated-histories
第5步执行时需要补充信息,只需将其当做在Linux下,用VIM编辑文本的操作即可, (1)先按 i(此时无需输入内容),(2)在按esc (3)输入 :wq 在回车即可
6、把本地仓库的文件推送到远程仓库的master分支
git push -u origin master
常见错误:
错误一:warning: in the working copy of ‘saas-system/src/main/java/com/demo/system/aspect/DataScopeAspect.java’, LF will be replaced by CRLF the next time Git touches it
如果出现上述错误,需执行:
windows下执行
git config --global core.autocrlf true
linux/mac下执行
$ git config --global core.autocrlf input
执行完上述命令后,在执行 git add .
错误二:fatal: couldn’t find remote ref master
- 如果出行上述错误,表示远程master分支不存在,则需要再远程仓库创建master分支,创建完后再执行相应的操作即可
- 该错误一般在上述 的5 、6步出现,因为此时需要从远程仓库拉取/推送数据
错误三:branch ‘master’ set up to track ‘origin/master’.
- 此错误与错误二的处理方式一致,也是需要先在远程仓库创建master分支
Git常用命令操作大全图片壁纸,可前往下述连接自取
https://blog.csdn.net/kehonghg/article/details/110634790?spm=1001.2014.3001.5501