Git常用命令

2021-09-14 01:50:08 字數 2355 閱讀 1006

一. 基本命令

二. 增刪改查

//head:指當前分支的最新提交點 

//回退上乙個版本

git reset --hard head^

//回退到指定版本

git reset --hard 複製**

git diff 《檔案》檢視修改內容

git diff head -- 《檔案》工作區和暫存區的比較

git diff head --cached 《檔案》暫存區和分支本地庫的比較

三. 分支管理

head:指當前分支的最新提交點

git merge合併分支到當前分支

3.2 衝突標記方式

3.3 git flow 管理策略

四. 標籤管理

與分支操作類似

git push origin --tags推送所有標籤

git tag -d刪除本地標籤

git push origin :refs/tags/刪除遠端標籤.

五. 遠端倉庫

5.1 倉庫相關

使用示例:

git clone [email protected]:jasonhww/test.git

複製**

使用示例:

git remote add origin [email protected]: jasonhww /test.git

/*如果乙個本地庫需要關聯多個遠端庫,那麼就用不同名稱標識不同遠端庫位址.

* *推送的時候就用對應的倉庫名.

/git remote add github [email protected]: jasonhww /test.git

git remote add gitee [email protected]: jasonhww /test.git

git push github master

git push gitee master

複製**

使用示例:

git remote rm origin

複製**

5.2 分支相關

git push origin dev推送dev分支到遠端庫

git pull origin master從遠端庫拉取master分支**,合併到本地

git fetch origin master遠端庫上的master分支**拉取到本地,暫不合併(需要呼叫merge命令進行合併)

git checkout -b origin/在本地建立和遠端分支對應的分支

git branch --set-upstream origin/建立本地分支和遠端分支的關聯

5.3 rebase

六. 貯藏操作

七. 配置檔案

配置檔案為位置:

全域性配置檔案:在使用者主目錄下的乙個隱藏檔案.gitconfig中.

倉庫的配置檔案:在倉庫所在目錄的.git/config檔案中.

配置郵箱語法

* --global user.name jasonhww

* --global user.email [email protected]

複製**

配置別名語法

git config --global alias.st status

git config --global alias.unstage 'reset head'

複製**

八. 忽略檔案

新增.gitignore檔案到版本庫中.

九. 其他

乙個github允許可以新增多個key, 但是乙個key只能用於乙個github賬號. 此時需要通過配置檔案配置多ssh的key對應不同github賬號.

posted @

2019-03-29 09:50

laughingqing 閱讀(

...)

編輯收藏

常用命令 Git 常用命令大全

安裝教程可參照 廖雪峰老師的安裝教程。git config 在git中,使用git config 命令來配置 git 的配置檔案,git配置級別主要有3類 1 倉庫級別 local 本地 git 倉庫級別配置檔案,作用於當前倉庫。優先順序最高 2 使用者級別 global,全域性配置檔案,作用於所有...

git 常用命令

檢視是否存在檔案需要上傳 git status git add git commit m 建立遠端倉庫 git remote add origin 116.255.146.153 ruby cd work daily project.git 更新git fetch 116.255.146.153 r...

git常用命令

詳細 1,git log p 命令來顯示每一次提交與其父節點提交內容之間快照的差異。2,為了檢視載入 staged 而並未提交 not committed 的內容差異,可以使用 git diff stage 命令 在git 1.6之前的版本中,使用 cached 適應情形 在執行git commit...