情况:
1.本地有一仓库
2.远程有一仓库
目的:
1.本地仓库关联远程仓库
2.把本地仓库文件推送至远程仓库
cd existing_repo
git remote add origin http://remote.gitlab.com/project-demo.git
git branch -M main
git push -uf origin main
回复 (0)
微信扫码 立即评论
情况:
1.本地有一仓库
2.远程有一仓库
目的:
1.本地仓库关联远程仓库
2.把本地仓库文件推送至远程仓库
cd existing_repo
git remote add origin http://remote.gitlab.com/project-demo.git
git branch -M main
git push -uf origin main