GIT 的常見用法

2022-05-03 21:21:07 字數 1454 閱讀 1654

git init 新建**庫

git clone新建專案

git branch 檢視分支

git config 顯示配置

git config -e 顯示配置檔案

git config user.name 「名稱」

git config user.email 「郵件」

git add 新增到展覽區

git commit -m 提交到展緩區域

git commit -v 顯示所有diff資訊

git branch 列出所有本地分支

git branch -r 所有遠端分之

git branch -a 所有本地 遠端 分之

git branch branch-name 新建分之 依然停留在該分組

git checkout branch-name 切換到指定分之 並更新工作區

git branch - 切換到上乙個分支

git merge branch 合併指定分支到當前分支

git cherry-pick commit 選擇乙個commit 合併當前分支

git branch -d 刪除分支

git tag 列出所有tag

git tag tag 新建tag在當前的commit

git show 檢視tag資訊

git push remote tag 提交指定 tag

git push remote tags 提交所有的tag

git checkout -b 新建分之 指向某個tag

git status 顯示所有變更的檔案

git log 顯示當前分支的版本歷史

git log stat 顯示commit歷史,以及每次commit發生變更的檔案

git log -s搜尋提交歷史

git diff 顯示暫緩區 與工作區的差異

git diff --ached 顯示暫存區喝上乙個commit的差異

git dff head 顯示工作區與當前分支最新commit之間的差異

git diff --shortstat "@" 顯示今天寫了多少**

git show 顯示某次提交的元資料和內容變化

git reflog 顯示當前分支的最近幾次提交

git remote -v 顯示所有遠端倉庫

git remote show 顯示繆爾遠端倉庫的資訊

git remote add name url 增加乙個新的遠端倉庫,並命名

git pull remote branch 去回遠端倉庫的變化,並與本地分支合

git push remote branch 上傳本地指定分支到遠端倉庫

git push remote --force 強行推送當前分支到遠端倉庫,

git push remote -all 推送所有分支到遠端倉庫

git checkout 檔案  恢復暫存區的指定檔案到工作區

git常見用法

1,首先從github gitlab伺服器拉下來 git clone 倉庫位址 如果使用ssh協議,還需要生成公私鑰對,把公鑰儲存到倉庫中 2,然後編輯和新增檔案後 git add 所有檔案 git add filename 具體某個檔案 3,然後提交 git commit m message更新資...

Git中的常見用法

git test git命令 1.本地專案關聯到遠端倉庫 git init git remote add origin git github.com git2.建立分支 git branch 3.切換分支 git checkout 4.新建並切換分支 git checkout b 5.檢視本地分支 ...

git 命令常見用法

1.git的配置 配置提交資訊 git config global user.name w xue git config global user.email 309776352 qq.com 配置顏色 git config global color.ui true 配置命令別名 git config...