git更新遠端分支到本地

2021-07-07 04:19:56 字數 448 閱讀 9856

更新遠端檔案到本地方式一

檢視遠端倉庫

git remote -v

從遠端獲取最新版本到本地

git fetch origin aaa

比較遠端分支和本地分支

git log -p aaa origin/aaa

合併遠端分支到本地

git merge origin/aaa

遠端檔案到本地方式二,在本地建臨時分支,合併後刪除

檢視遠端倉庫

git remote -v

從遠端獲取最新版本到本地

git fetch origin master:temp

比較遠端分支和本地分支的區別

git diff temp

合併遠端分支到本地

git merge temp

使用pull更新

git pull origin aaa

git提交本地分支到遠端分支

1 遠端倉庫相關命令 檢出倉庫 git clone git 檢視遠端倉庫 git remote v 新增遠端倉庫 git remote add name url 刪除遠端倉庫 git remote rm name 修改遠端倉庫 git remote set url push name newurl ...

git推送本地分支到遠端分支

有時候我們開發需要開乙個分支,這樣可以有效的並行開發.開分支有兩種方式 git checkout b feature branch origin feature branch 檢出遠端的feature branch分支到本地 git checkout b feature branch 建立並切換到分...

git推送本地分支到遠端分支

有時候我們開發需要開乙個分支,這樣可以有效的並行開發.開分支有兩種方式 git checkout b feature branch origin feature branch 檢出遠端的feature branch分支到本地 git checkout b feature branch 建立並切換到分...