git中的基本命令

2022-06-23 23:51:09 字數 1253 閱讀 7942

工作區:      當前的編輯位置

快取區:      add 之後的區域

版本庫:      commit之後的區域就是版本庫

git init .         初始化

git add .       將工作區的所有檔案新增到快取區

git commit -m 「提交資訊」 將快取區的內容新增到版本庫

git status     檢視當前的狀態

git reset --hard hash值   回退到指定的版本

git checkout -- file           將檔案回滾到最近一次提交的樣子

git log                             檢視當前位置之前的提交記錄

git reflog                         檢視所有的記錄

git reset head file           將快取區的檔案拉取到工作區

git diff                             對比工作區和快取區

git diff --cached              對比版本庫和快取區

快照 :

git stash 將當前的內容做快照,並回到最後一次提交的位置

git stash list 檢視快照列表

git stash pop 回到快照位置,並刪除這個快照

git stash drop 刪除快照

分支 :

git branch 檢視分支列表

git branch name 建立分支

git checkout name 切換分支

git checkout -b name 建立分支並切換分支

git branch -d name 刪除分支

git merge name 在合併到的分支上進行合併

標籤 :

- git tag                   檢視所有標籤

- git tag -a v1.0 -m "v1.0"  建立標籤

- git tag -d               刪除本地標籤

- git push origin :refs/tags/v1.0  刪除遠端倉庫標籤

- git push origin --tags  上傳所有標籤

忽略檔案 :

- .gitignore

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