git 将本地仓库关连并push远程


发布者 ourjs  发布时间 1670832727278
关键字 Git 

 

情况:

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