当前位置:   article > 正文

【git】项目本地文件和远端不一致,如何初始化提交git项目_git创建的项目文件不一致怎么办

git创建的项目文件不一致怎么办

项目本地文件和远端不一致,如何初始化提交git项目

最近学习android kotlin,但是因为android studio新建项目会写好一堆东西,github是新建的项目跟本地又不匹配,push代码会报错,pull也拉不下来,就很烦,写个文章记录下

1.本地初始化git

本地端根目录执行以下命令

git init
  • 1

2. github新建项目

略(相信大家这个都会)

3. 本地添加远端仓库

git remote add origin git@github.com:xxx.git

git remote add origin https:xxx.git
  • 1
  • 2
  • 3

4. commit代码

git add .
git commit -m 'init'
  • 1
  • 2

5. 检查并创建main分支

git branch 
* master  

// 创建main分支
git branch main

// 切换分支main
git checkout main
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

6. 拉取代码

git pull  origin main --allow-unrelated-histories
  • 1

这里需要把冲突的地方修改掉才行

7. 提交代码

git add .
git commit -m 'init'
git push origin main
  • 1
  • 2
  • 3

8. 删除master分数

git branch -d master
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/煮酒与君饮/article/detail/996046
推荐阅读
相关标签
  

闽ICP备14008679号