git 倉庫搭建 基本命令

2021-09-25 16:15:40 字數 1040 閱讀 5614

命令

git --version
檢視git版本號

命令

git init
初始化倉庫

命令

git add
新增檔案到倉庫

命令

git commit
提交操作

命令

git status
當檔案被修改過後,使用命令檢視檔案修改的狀態

使用命令

git diff 檔名
可以檢視具體修改的是哪些項

使用git status命令隨時掌握工作區的狀態,如果git status顯示檔案被修改過,再使用git diff 檔名來檢視具體修改的是什麼。

git reset --hard commitid
使用這個命令可以回到指定commitid的倉庫版本

git中的每一次操作都是一次修改

git checkout -- file
使用命令可以撤銷對於工作區的修改

場景1:當你改亂了工作區某個檔案的內容,想直接丟棄工作區的修改時,用命令git checkout -- file

場景2:當你不但改亂了工作區某個檔案的內容,還新增到了暫存區時,想丟棄修改,分兩步,第一步用命令git reset head,就回到了場景1,第二步按場景1操作。

git remote add origin git@server-name:path/repo-name.git
git clone [email protected]:sutubaba/gitskills.git

git 基本命令

man git man git commit man git pull man git merge git config global user.name yourname git config global user.email yourname example.com cd home git m...

Git 基本命令

git config global user.name xx git config global user.email x com 1.建立專案資料夾 mkdir myproject 2.進入專案資料夾 cd myproject 3.初始化專案 git init 4.建立 readme.md tou...

Git 基本命令

說明 以下所有操作命令 均在 git bash 下執行,即命令為linux風格 檔案 以 txt 為例 其中,建立某乙個倉庫,在某一具體路徑下 執行 git init即可 幫助命令 git help 建立 respository git init 刪除 respository rm rf git 建...