首页 > Web开发 > 详细

git 上传本地项目到gitlab

时间:2021-05-25 12:14:48      阅读:20      评论:0      收藏:0      [点我收藏+]

git init //初始化本地仓库

git add .  //将本地项目的所有文件添加到暂存区

git commit -m "说明信息"

git remote add origin ssh://git@gitlab.jvtd.cn:XXXX/huguiyang/XXXX.git  //这一步如果出现错误:

fatal:remote origin already exists,先清除一下关联关系:
git remote rm origin
git remote -v //检查关联是否已建立且正确
 
git pull --rebase origin master
git push --rebase origin master

git 上传本地项目到gitlab

原文:https://www.cnblogs.com/hugyfighting/p/14807216.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!