欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

gitlab上先创建项目并存在文件,本地代码如何提交到该仓库

程序员文章站 2024-01-13 19:30:34
...

1. 本地git init

git init

2.  本地关联上远程

$ git remote add origin https://github.com/user/repo.git

3. 从远程拉取最新代码

git pull origin master 

4. 本地add

git add . 

5. 本地commit

 git commit -m 'init'

 6. push

git push origin master

相关标签: git