本地调试了一个项目怎么上传到公司gitlab上,让其他同事看见并修改
第一次将本地项目上传到gitlab
然后cd到你本地项目的根目录
执行以下命令
git config --global user.name “刘某某”
git config --global user.email “[email protected]

git init
git remote add origin http://gitlab.xx.cn/test-group/mobile-manage-h5.git
git add .
git commit -m “Initial commit”
git push -u origin master

END

相关文章:

  • 2021-07-08
  • 2022-12-23
  • 2022-02-09
  • 2021-07-16
  • 2021-04-10
  • 2021-10-20
猜你喜欢
  • 2021-05-28
  • 2021-04-05
  • 2021-12-29
  • 2021-08-19
  • 2021-06-07
相关资源
相似解决方案