git使用步驟——斷開與原來遠端倉庫的連線,連線新倉庫並上傳

蛇蠍人bt發表於2020-10-24

1.連線遠端倉庫
git remote add origin 倉庫地址

2.檢視遠端連線
git remote -v

3.git取消與遠端倉庫的連線
git remote remove origin

4.初始化倉庫

git init

5.連線新倉庫

git remote add origin https://github.com/XXX.git

 

6.檢查狀態

git status

7.檢查分支

git branch

8.建立分支

git checkout br

9.提交到 本地

git add .

10.提交說明

git commit -m “說明"

11.推送到遠端分支

git push -u br

12.切換到主分支

git checkout main

13.本地合併

git merge br

14.推送到遠端

git  push

相關文章