在github上建立庫
二.在本地拷貝
git clone [url]
三.配置
git config --global user.name "******"
git config --global user.email "*****@qq.com"
四.檢視配置
git config --list
五.git的三個區
工作區暫存區 (作為過渡層,避免誤操作,保護工作區和版本區,分支處理)
版本區 (庫)
六.git命令
git status
git add
. 提交所有修改檔案
git commit
-m "注釋"
紅色代表未提交檔案(在工作區),+1:有乙個未處理檔案 ~0 0個修改 -0 0個刪除
綠色代表暫存區
git commit -a -m "注釋" 不用放入暫存區直接提交
git push
git pull (合併修改)
git log 檢視日誌
對比:git diff (工作區和暫存區的對比)
git diff --cached (暫存區和版本庫)
git diff --staged (同上)
git diff master (工作區和版本庫)
撤銷:git reset head filename (從暫存區撤回到工作區)
git reset --hard 版本指標
git checkout --filename (撤銷工作區修改)
git commit --amend
git 使用筆記
git 使用筆記 初始化資訊 git config user.name name git config user.email com git config core.editor vim git init 初始化資訊 從遠端pull git clone git url git pull push 到...
git使用筆記
回滾 git checkout sql 沒有 git add 之前 執行回滾到原始狀態 git reset head sql 執行git add之後,但是沒有 git commit之前 操作,然後在執行 git checkout git remote v 檢視遠端倉庫詳細資訊 git log log...
Git使用筆記
用了一段時間的tortoisgit,基本能滿足目前的需求。但是當切換到linux的工作環境時,就有點不知所措了,於是又複習了一下git的命令,相對於第一次學習,又有了新的認識。工作區 working tree 所有有改動的檔案都存在於工作區。暫存區 index 對於已經存在於工作區的檔案,執行git...