git 常用命令

2021-07-25 00:18:53 字數 1654 閱讀 6847

檢視當前版本:git –version

檢視git幫助文件:git config –help; | git help config;

操作git 配置檔案:git config

1

.配置git提交使用者名稱:git

config--

global

user

.name

zhangsan2.

config--

global

user

.email

zhangsan@qq

.com3.

gitconfig的增刪改查

git有三個操作級別:--

local、--

global、--

system,優先順序依次降低

增加乙個使用者名稱:git

config--

global--

adduser

.name

lisi

刪除乙個使用者名稱:git

config--

global--

unset

user

.name

lisi

修改乙個使用者名稱:git

config--

global

user

.name

zhangsan2

檢視所有的配置:git

config--

list--

global

檢視某個配置:git

config--

getuser

.name4.

為命令設定別名:git

config--

global

alias.別名

命令相關操作

gitconfig--

global

alias.co

checkout

add       新增檔案內容至索引;

bisect 通過二分查詢定位引入 bug 的變更;

branch 列出、建立或刪除分支;

checkout 檢出乙個分支或路徑到工作區;

clone 轉殖乙個版本庫到乙個新目錄;

commit 記錄變更到版本庫;

diff 顯示提交之間、提交和工作區之間等的差異;

grep 輸出和模式匹配的行;

init 建立乙個空的 git 版本庫或重新初始化乙個已存在的版本庫;

log 顯示提交日誌;

merge 合併兩個或更多開發歷史;

mv 移動或重新命名乙個檔案、目錄或符號鏈結;

pull 獲取並合併另外的版本庫或乙個本地分支;

push 更新遠端引用和相關物件;

rebase 本地提交轉移至更新後的上游分支中;

reset 重置當前 head 到指定狀態;

rm 從工作區和索引中刪除檔案;

show 顯示各種型別的物件;

status 顯示工作區狀態;

tag 建立、列出、刪除或校驗乙個 gpg 簽名的 tag 物件。

常用命令 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...