git 檢視所有遠端分支以及同步
檢視本地和遠端倉庫的所有分支
檢視遠端倉庫的分支
同步遠端分支
檢視本地和遠端倉庫的所有分支
git branch -a
在這裡插入描述
檢視遠端倉庫的分支
git branch -r
單獨直接檢視遠端倉庫的所有分支如下:
在這裡插入描述
同步遠端分支
git fetch 將本地分支與遠端保持同步
git checkout -b 本地分支名x origin/遠端分支名x 拉取遠端分支並同時建立對應的本地分支
首先同步所有遠端分支,如下:
git branch -r | grep -v 『->』 | while read remote; do git branch --track 「katex parse error: expected 『}』, got 『#』 at position 8: " "remote」; done
在這裡插入描述
將本地所有分支與遠端保持同步 git fetch --all
最後拉取所有分支** git pull --all
git檢視所有遠端分支 本地分支 建立分支
git clone git 192.168.3.21 git 切換到新專案 git init git status git add git commit m 內容 git pull origin master git push origin master 1.檢視本地分支 git branch 新建...
git同步遠端倉庫的所有分支
找乙個乾淨目錄,假設是clone cd clone 轉殖遠端專案 shape based matching.git git clone 等價於 git checkout b master origin master 這樣在clone目錄下得到乙個shape based matching子目錄 進入s...
git 檢視遠端分支
這個資訊實際是存在config 檔案中的,可以用下面的命令來檢視temp分支的資訊,1 git config l grep branch temp 比如下面的列印說明本地 master 分支 track 的是 origin 庫的 master 分支。1 2 3 git config l grep b...