常用Git指令總結(速查表分享)

2022-05-30 14:01:11
Git目前已經是國內最常見的程式碼管理工具之一;無論新手還是經驗豐富的大佬,都需要有一套自己的Git命令字典,方便隨時使用。下面本篇文章總結了一些常用Git指令分享給大家,希望對大家有所幫助!

Git速查表

git version 2.36.0

檔案說明

  • <> 表示【需替換的項】

  • [] 表示【非必填項】

  • | 表示【或】

  • 工作樹(工作區),索引(暫存區),Git 目錄(HEAD) 三詞含義參照 Git 官網

初始設定

git config --global user.name [<username>] 設定使用者名稱

git config --global user.email [<email>] 設定郵箱

git config --global core.editor [<vim>] 設定編輯器

建立專案

git clone <options> 克隆遠端倉庫

git init [project] 初始化本地專案

新增

git add <file> 新增檔案到暫存區

git commit -m <commit notes> 將暫存區的內容提交到 HEAD

git commit -am <commit notes> 將 add 和 commit 合併操作

git commit --amend -m <commit notes> 將 add 和 commit 合併操作且合併到上次 commit

顯示

git status 顯示狀態

git diff [HEAD] 顯示差異

git log 顯示紀錄檔

git show <commit> 顯示某個 commit 的詳細內容

git blame <file> 顯示檔案每行的 commit 資訊

撤回

git restore <file> 撤回工作區的修改

git restore --staged <file> 將已提交到暫存區的修改撤回工作區

git reset [--mixed] <commit> 將當前版本撤回到某個 commit,保留工作區的修改

git reset --soft <commit> 將當前版本撤回到某個 commit, 保留工作區和暫存區的修改

git reset --hard <commit> 將當前版本撤回到某一個 commit,不保留工作區的修改

git rm <file> 將檔案從工作區和暫存區刪除

git mv <file> 將檔案從工作區和暫存區移動或改名

分支

git branch [--list] 顯示所有分支

git branch -a 顯示遠端分支

git branch <branch> 建立分支

git branch -d|-D <branch> 刪除分支

git branch -m <newbranch> 重新命名當前分支

git switch <branch> 切換到已有分支

git switch -c <branch> 建立並切換分支

git merge <branch> 將某個分支合併到當前分支

git tag <tagname> 給當前分支打標籤

git stash 將工作區的更改儲存到髒工作目錄中

git stash apply 將髒工作目錄中的資料恢復到工作區(不會刪除髒工作目錄儲存的資料)

git stash drop 將髒工作目錄中的資料刪除

git stash pop 將髒工作目錄中的資料恢復工作區並刪除髒資料

遠端

git remote [-v] 顯示遠端庫

git remote show <origin> 顯示某個遠端庫的資訊

git remote add <origin> <url> 新增遠端庫連結

git remote rm <origin> 刪除遠端庫連結

git remote rename <oldname> <newname> 重新命名遠端庫

git pull [<origin><branch>] 拉取遠端庫到本地庫

git push [-u <origin> <master>] 將本地庫推播到遠端庫

git push origin --delete <branch>|git push origin :crazy-experiment 刪除遠端分支

git fetch 從遠端庫獲取到本地庫

幫助

git help <command> 顯示某個命令的詳細使用檔案

git <command> -h 顯示某個命令的使用說明

checkout

該命令職責不明確,不建議使用;

git checkout <file> 丟棄工作區的修改

git checkout -f 強制丟棄工作區和暫存區的修改

git checkout <branch> 切換分支

git checkout -b <branch> 建立並切換分支

推薦學習:《》

以上就是常用Git指令總結(速查表分享)的詳細內容,更多請關注TW511.COM其它相關文章!