当前位置:   article > 正文

git初次提交代码到远程仓库_git首次提交代码到远程仓库

git首次提交代码到远程仓库

当在gitlab的web页面创建blank project成功之后,复制项目的clone地址。等下[remote url]要换成这个url地址。

git第一次本地代码提交到远程仓库
1、git仓库初始化
git init

2、本地仓库连接到远程仓库
git remote add origin [remote url]

3、查看当前状态
git status

4、将代码添加到暂存区
git add .

5、将代码添加到仓库
git commit -m 'first commit'

6.拉取远程的代码
git pull origin master

7、将本地代码提交到远程仓库
git push origin master

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/694294
推荐阅读
相关标签
  

闽ICP备14008679号