介紹命令前先來說說git的三個工作區域:
1.working directory
倉庫初始化後預設存放的位置
2.staging area(index)
add後暫存的位置
3.git repository
最終確定檔案儲存的位置
git config --global color.ui.true
開啟檔案顏色顯示
git config --global user.name "myname"
設定git使用者名稱
git config --global user.email "myemail"
設定git郵箱
git config -- list
檢視設定
git init
初始化git倉庫
git status
檢視檔案狀態,可選引數-s
git add filename
把檔案從working directory提交到staging area
git commit -m "message"
把檔案從staging area提交到working directory
git commit -am "message"
直接將檔案從working directory提交到git repository中(不建議使用)
git log
檢視提交日誌
--online
只顯示commit的message
git diff
檢視檔案變更內容
--staged
檢視staging area變更內容
--stat
檢視working directory變更內容
git reset filename
把staging area中的檔案恢復為git repository版本
--hard hash碼
把staging area中的檔案恢復為指定的git repository歷史版本
git reset --mixed:此為預設方式,不帶任何引數的git reset,即時這種方式,它回退到某個版本,只保留原始碼,回退commit和index資訊
git reset --soft:回退到某個版本,只回退了commit的資訊,不會恢復到index file一級。如果還要提交,直接commit即可
git reset --hard:徹底回退到某個版本,本地的原始碼也會變為上乙個版本的內容
git checkout filename
把working directory中的檔案恢復為staging area的版本
git checkout head filename
把working directory中的檔案恢復為git repository
的版本git relog
恢復歷史版本後可使用此命令檢視所有提交歷史
git rm filename
把檔案從本地git(working directory和staging area)中刪除,再執行git commit -m "message"可以把git repository中的檔案也刪掉
--cached
把檔案從staging area中刪除
git mv filename newfilename
本地git檔案改名
git stash
把working directory內容暫存並回退為最後提交時的版本
git stash list
檢視暫存列表
git stash
pop恢復為暫存的版本
tree
檢視目錄結構(頭高頭比擰家多隻角)
git cat-file -p head
顯示head指向的內容資訊
git rev-parse head
顯示當前head指向的hash碼
git rev-parse head~
顯示上一級
head指向的hash碼
git rev-parse head~4^
顯示上4級tree指向的hash碼
git rev-parse head~4:filename
顯示上4級檔案指向的hash碼
git cat-file -p head~4:filename
顯示上4級檔案內容
git show head~4:filename
效果與前一種寫法一樣
git branch
列出所有分支
git branch 分支名
建立分支 -d
刪除分支
git checkout 分支名
切換到某個分支-b
建立分支同時切換
git merge 分支名
使被merge分支的內容和當前分支內容合併
常用命令 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...