常用命令:
git init 『learngit』:建立乙個版本庫』learngit』
git add 『readme.txt』 : 將readme.txt增加到』learngit『庫中
git commit -m 「test」 : 將檔案更改提交到庫中 『-m』引數為新增備註(在使用這條命令時,需要宣告上傳者身份)
git config –global user.email 「[email protected]」上傳者郵箱
git config –global user.name 「your name」上傳者姓名
git status : 檢視倉庫目前狀態(ps:為提交的檔案)
git diff : 檢視修改的檔案
git log : 顯示最近到最遠的提交日誌
git reset –hard 『commit id』 : 版本回退,將版本回退到』commit id』這個版本中
git reflog : 檢視歷史命令
stage:暫存區(需要修改的檔案通通放到暫存區,git commit一次性提交所有修改)
git diff head – readme.txt : 檢視工作區和版本庫裡面最新版本的區別
git checkout – file : 丟棄工作區的修改
git rm test.txt : 將test.txt刪掉(此時並未提交,相當於在暫存區中的修改,git commit之後才是真正從版本庫中刪除)
git checkout – test.txt :將誤刪除的test.txt檔案恢復(此操作必須在commit之前)
git學習筆記1
初始化設定 git config git config分為版本庫設定,全域性設定 針對某一使用者 系統設定,優先順序從前往後依次降低 git config e global system 分別編輯版本庫 全域性 系統設定 git config global user.name user.email ...
git學習筆記(1)
最近一段時間一直在研究git,算是入門了。在這裡做一下總結 1.git在使用之前需要配置自己使用者名稱和郵箱 git config global user.name you name git config global user.email com 注意當前資料夾的位置!注意當前資料夾的位置!注意當...
Git學習筆記1
一 git創始人 linux 分布式版本控制系統 二 作用 記錄每次的檔案的改動以及路徑 三 windows安裝git msygit windows版本 是git for windows.github.io 四 建立版本庫 repository pwd 用於顯示當前目錄 1 建立空目錄 mk dir...