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
上一篇: API接口响应速度追踪类
下一篇: 一次线上服务调用超时优化问题