1.常用名詞
-
master:默認(rèn)開發(fā)分支
-
origin:默認(rèn)遠(yuǎn)程版本庫
-
index / stage:暫存區(qū)
-
workspace:工作區(qū)
-
repository: 倉庫區(qū)
-
remote:遠(yuǎn)程倉庫
2.新建代碼庫
# 在當(dāng)前目錄新建一個git代碼庫
git init
# 新建一個目錄,將其初始化為git代碼庫
git init [project-name]
# 下載一個項(xiàng)目
git clone [url]
3.配置
git的配置文件在 .gitconfig,可以在用戶主目錄下(全局配置)悔橄,也可以在項(xiàng)目目錄下(項(xiàng)目配置)
# 顯示當(dāng)前 git 配置
git config --list
# 編輯 git 配置文件
git config -e [--global]
# 設(shè)置提交代碼時的用戶信息
git config [--global] user.name "[name]"
git config [--global] user.email "[email address]"
4.增加/刪除/修改文件
# 查看代碼狀態(tài)
git status
# 查看變更內(nèi)容
git diff
# 添加指定文件到暫存區(qū)
git add [file name1] [file name2]...
# 添加指定目錄到暫存區(qū)靶累,包括其子目錄
git add [dir]
# 添加當(dāng)前目錄的所有文件到暫存區(qū)
git add .
# 添加文件之前進(jìn)行確認(rèn)腺毫,對于同一文件的多處修改,可多次提交
git add -p
# 刪除工作區(qū)的文件挣柬,并將這次刪除放到暫存區(qū)
git rm [file1] [file2] ...
# 停止追蹤指定文件潮酒,但是該文件會保留在工作區(qū)
git rm --cached [file]
# 改名文件,并將這個改名放入暫存區(qū)
git mv [file-original] [file-renamed]
5.提交代碼
# 提交暫存區(qū)代碼到倉庫
git commit -m [message] -- 對本次提交做一些說明
# 提交暫存區(qū)的指定文件到倉庫
git commit [file1] [file2] [file3]...
# 提交工作區(qū)自上次commit之后的變化邪蛔,直接到倉庫
git commit -a
# 提交時顯示所有的 diff 信息
git commit -v
# 在上一次 commit 的基礎(chǔ)上繼續(xù)提交急黎,用于修改上一次 commit 的提交信息
git commit --amend -m [message]
# 重做上一次提交,用于 commit 出錯侧到,修改需要修改的內(nèi)容后繼續(xù)在上一次基礎(chǔ)上提交
git commit --amend [file1] [file2]
6.分支
# 顯示所有本地分支
git branch
# 顯示所有遠(yuǎn)程分支
git branch -r
# 列出所有本地分支和遠(yuǎn)程所有分支
git branch -a
# 新建一個分支但是依然停留在當(dāng)前分支
git branch [branch-name]
# 新建一個分支并且與指定的遠(yuǎn)程分支建立追蹤關(guān)系
git branch --track [local-branch] [remote-branch]
# 刪除分支
git branch -d/-D [branch-name]
# 刪除遠(yuǎn)程分支
git push origin --delete [branch-name]
git branch -dr [remote/branch]
# 新建一個分支并切換到該分支
git checkout -b [branch-name]
# 切換到指定分支勃教,并更新工作區(qū)
git checkout [branch-name]
# 切換到上一個分支
git checkout -
# 分支重命名
git branch -m [oldbranch-name] [newbranch-name]
# 建立追蹤關(guān)系,將現(xiàn)有分支追蹤到指定遠(yuǎn)程分支
git branch --set-upstream [branch] [remote-branch]
# 合并指定分支到當(dāng)前分支
git merge [branch]
# 衍合指定分支到當(dāng)前分支
git rebase [branch] -- git rebase master 將本次提交插入到master上(***)
# 選擇一個 commit 匠抗,合并到當(dāng)前分支
git cherry-pick [commit]
7.標(biāo)簽
# 列出所有本地標(biāo)簽
git tag
# 基于最新提交創(chuàng)建 tag
git tag [tagname]
# 刪除標(biāo)簽
git tag -d [tagname]
# 刪除遠(yuǎn)程 tag
git push origin :refs/tags/[tagname]
# 查看 tag 信息
git show [tag]
# 提交指定 tag
git push [remote] [tag]
# 提交所有 tag
git push [remote] --tags
# 新建某個分支故源,指向某個 tag
git checkout -b [branch-name] [tag-name]
8.查看信息
# 查看有變更的文件
git status
# 顯示當(dāng)前分支的版本信息
git log
# 顯示 commit 歷史,以及每次 commit 發(fā)生變更的文件
git log --stat
# 搜索提交歷史戈咳,根據(jù)關(guān)鍵詞
git log -S [keyword]
# 顯示某個 commit 之后的所有變動心软,每個 commit 占據(jù)一行
git log [tag] HEAD --pretty=format:%s
# 顯示某個 commit 之后的所有變動,其"提交說明"必須符合搜索條件
git log [tag] HEAD --grep feature
# 顯示某個文件的版本歷史著蛙,包括文件改名
git log --follow [file]
git whatchanged [file]
# 顯示指定文件相關(guān)的每一次 diff
git log -p [file]
# 顯示過去 5 次提交
git log -5 --pretty --oneline
# 顯示所有提交過的用戶删铃,按提交次數(shù)排序
git shortlog -sn
# 顯示指定文件是什么人在什么時候修改過
git blame [file]
# 顯示暫存區(qū)和工作區(qū)的差異
git diff
# 顯示暫存區(qū)和上一個 commit 的差異
git diff --cached [file]
# 顯示工作區(qū)與當(dāng)前分支最新 commit 之間的差異
git diff HEAD
# 顯示兩次提交之間的差異
git diff [first-branch] ... [second-branch]
# 顯示今天你寫了多少行代碼
git diff --shortstat "@{0 day ago}"
# 顯示某次提交的元數(shù)據(jù)和內(nèi)容變化
git show [commit]
# 顯示某次提交發(fā)生變化的文件
git show --name-only [commit]
# 顯示某次提交時,某個文件的內(nèi)容
git show [commit]:[filename]
# 顯示當(dāng)前分支最近幾次提交
git reflog
9.遠(yuǎn)程操作
# 下載遠(yuǎn)程倉庫的所有變動
git fetch [remote]
# 拉取遠(yuǎn)程倉庫的變化踏堡,并與本地分支合并
git pull [remote] [branch]
# 顯示所有遠(yuǎn)程倉庫
git remote -v
# 顯示某個遠(yuǎn)程倉庫的信息
git remote show [remote]
# 增加一個新的遠(yuǎn)程倉庫猎唁,并命名
git remote add [name] [url]
# 上傳本地指定分支到遠(yuǎn)程倉庫
git push [remote] [branch]
# 強(qiáng)行推送當(dāng)前分支到遠(yuǎn)程倉庫,即使有沖突
git push [remote] --force
# 推送所有分支到遠(yuǎn)程
git push [remote] --all
# 刪除遠(yuǎn)程分支或標(biāo)簽
git push [remote] :[branch/tag-name]
# 上傳所有標(biāo)簽
git push --tags
10.撤銷
# 撤銷工作目錄中所有未提交的修改內(nèi)容顷蟆,--soft可以撤銷 commit 還可以保存修改
git reset --hard / --soft HEAD^
# 撤銷指定的未提交文件的修改內(nèi)容
git checkout HEAD [file]
# 撤銷指定的提交
git revert [commit]
# 退回到之前1天的版本
git log --before = "1 days"
# 恢復(fù)暫存區(qū)的指定文件到工作區(qū)
git checkout [file]
# 恢復(fù)某個 commit 的指定文件到暫存區(qū)和工作區(qū)
git checkout [commit] [file]
# 恢復(fù)暫存區(qū)的所有文件到工作區(qū)
git checkout .
# 重置暫存區(qū)的指定文件诫隅,與上一次 commit 保持一致,但是工作區(qū)不變
git reset [file]
# 重置暫存區(qū)與工作區(qū)帐偎,與上一次 commit 保持一致
git reset --hard
# 重置當(dāng)前分支的指針為指定 commit逐纬,同時重置暫存區(qū),但工作不變
git reset [commit]
# 重置當(dāng)前分支的HEAD為指定 commit 同時重置暫存區(qū)和工作區(qū)削樊,與指定 commit 一致
git reset --hard [commit]
# 重置當(dāng)前 HEAD 為指定 commit豁生,但保持暫存區(qū)和工作區(qū)
git reset --keep [commit]
# 新建一個 commit,用來撤銷指定 commit漫贞,后者的所有變化都將被前者抵消甸箱,并且應(yīng)用到當(dāng)前分支
git revert [commit]
# 暫時將未提交的變化存棧,稍后再彈出
git stash
git stash pop
11.生成可供發(fā)布的壓縮包
git archive
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者