Git使用總結

2021-09-02 16:27:47 字數 1450 閱讀 7266

git建立乙個分支:

假設我現在在develop分支上:

git checkout -b develop_1

那麼通過這行命令,我就在本地新建了乙個develop_1分支;

接下來,如何將該分支推送到遠端:

git push -u origin develop_1

這樣,其他人通過

git fetch origin

那麼如何刪除一條本地分支和其對應的遠端分支了

首先刪除本地分支

git branch -d develop_1

就刪除了本地的develop_1分支

那麼接下來刪除其對應的遠端分支:

git push --delete origin develop_1

這樣就完成了

在master主幹,要合併develop分支:

git merge --no-ff -m "merge with no-ff" develop

1. 清理遠端分支,把本地不存在的遠端分支刪除

git remote prune origin

2. 將遠端分支live_video 獲取到本地 live_video

git checkout -b live_video origin/live_video

3. 在乙個分支之上,進行打標籤操作

git tag v1.0

即打了乙個v1.0的標籤.

tag是對歷史乙個提交id的引用,如果理解這句話就明白了

使用git checkout tag即可切換到指定tag,例如:

git checkout v0.1.0

切換到tag歷史記錄會處在分離頭指標狀態,這個修改是很危險的,在切換回主線時如果沒有合併,之前的修改提交基本都會丟失,如果需要修改可以嘗試

git checkout -b branch tag

建立乙個基於指定tag的分支

推送本地分支tag到遠端

git push --tags

刪除乙個本地tag

git tag -d v1.1

刪除遠端tag

git push origin --delete tag v1.1

Git使用總結

1.git branch vv 檢視本地分支與遠端分支的關聯關係 2.git push origin localbranch remotebranch 建立遠端分支remotebranch,該遠端分支的內容與localbranch內容一致 3.git push origin remotebranch...

Git使用總結

在linux上安裝git 命令 tar,config,make,sudo make install 在mac os x上安裝git exe程式執行即可 安裝完成後,在開始選單裡找到 git git bash 蹦出乙個類似命令列視窗的東西,就說明git安裝成功!設定使用者名稱 git config g...

Git使用總結

在windows上安裝git 安裝完成後,在開始選單裡找到 git git bash 蹦出乙個類似命令列視窗的東西,就說明git安裝成功!install git on windows安裝完成後,還需要最後一步設定,在命令列輸入 git config global user.name your nam...