当前位置:   article > 正文

git初次上传代码及更新操作_git首次上传代码

git首次上传代码

1. 初始上传代码

1.git初始文件

git init
  • 1

2.与远程仓库连接

git remote add origin https://github.com/.git
  • 1

3.添加文件

git add .
  • 1

4.查看仓库状态

git status
  • 1

5.查看当前分支

git branch
  • 1

6.切换到提交项目的分支

  • dev为本地仓库名
    git checkout  main
    
    • 1

7.提交信息

git commit -m "926_2"
  • 1

8. 拉取远程readme文件

git pull --rebase origin "main"
  • 1

9. 提交代码

git push origin main
  • 1

2.更新代码

1.添加新文件

git add .
  • 1

2.查看仓库状态

git status
  • 1

3.提交信息

git commit -m "926_2"
  • 1

4. 提交代码

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

闽ICP备14008679号