Git使用總結

2021-08-10 18:53:15 字數 344 閱讀 6252

git的三個區:工作區、暫存區、版本庫

新建檔案:

git add 新檔案 工作區->暫存區

git reset head(反向git add) 新新增的檔案從暫存區刪除,工作區不變

git checkout 版本庫->工作區 暫存區不變,已經add的檔案依然在暫存區

git commit 暫存區->版本庫

修改檔案:

工作區修改檔案後

git reset head 取消暫存區內容,工作區不變

git checkout 版本庫->工作區,同時刪除暫存區的修改

git commit 暫存區->版本庫(僅修改檔案時:暫存區=工作區)

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...