列舉所有的別名與配置
gitconfig--list
Git 別名配置
gitconfig--globalalias.
設置git為大小寫敏感
git config --global core.ignorecase false二、Help:常用的輔助查詢命令
在git 命令行裡查看everyday git
git help everyday
顯示git常用的幫助命令
git help -g
獲取Git Bash的自動補全
~/.git-completion.bash&&echo'[-f~/.git-completion.bash]&&.~/.git-completion.bash'>>~/.bashrc
設置自動更正
gitconfig--globalhelp.autocorrect1三、Remote:遠端倉庫配置
獲取所有遠端引用配置
gitremote
或者
gitremoteshow
修改某個遠端的地址
gitremoteset-urloriginURL
Repo
查看當前倉庫中的所有未打包的objects和磁盤占用
gitcount-objects--human-readable
從object數據庫中刪除所有不可達的object
gitgc--prune=now--aggressive四、文件類操作 ,Cache:緩存,Track:文件追蹤,
展示所有被追蹤的文件
gitls-files-t
展示所有未被追蹤的分支
gitls-files--others
展示所有被忽略的文件
gitls-files--others-i--exclude-standardgitcheck-ignore*gitstatus--ignored
Manipulation:操作
停止追蹤某個文件但是不刪除它
gitrm--cached<file_path
或者
gitrm--cached-r<directory_path
強制刪除未被追蹤的文件或者目錄
gitclean-fgitclean-f-dgitclean-df
清空.gitignore
gitclean-X-f
Changes:修改
Info:信息查看
查看上次提交之後的未暫存文件
gitdiff
查看准備用於提交的暫存了的修改的文件
gitdiff--cached
顯示所有暫存與未暫存的文件
gitdiffHEAD
查看最新的文件版本與Stage中區別
gitdiff--staged
dd:追蹤某個修改,准備提交
Stage某個文件的部分修改而不是全部
gitadd-p
Reset:修改重置
以HEAD中的最新的內容覆蓋某個本地文件的修改
gitcheckout--<file_name>
Stash:貯存
Info:信息查看
展示所有保存的Stashes
gitstashlist
Manipulation:操作
Save:保存
保存當前追蹤的文件修改狀態而不提交,並使得工作空間恢復干淨
gitstash
或者
gitstashsave
保存所有文件修改,包括未追蹤的文件
gitstashsave-u
或者
gitstashsave--include-untrackedApply:應用
應用任何的Stash而不從Stash列表中刪除
gitstashapply<stash@{n}>
應用並且刪除Stash列表中的最後一個
gitstashpop
或者
gitstashapplystash@{0}&&gitstashdropstash@{0}
刪除全部存儲的Stashes
gitstashclear
或者
gitstashdrop<stash@{n}>
從某個Stash中應用單個文件
gitcheckout<stash@{n}>--<file_path>
或者
gitcheckoutstash@{0}--<file_path>
Commit:提交
檢索某個提交的Hash值
gitrev-list--reverseHEAD|head-1
Info:信息查看
List:Commit列表
查看自Fork Master以來的全部提交
gitlog--no-merges--stat--reversemaster..
展示當前分支中所有尚未合並到Master中的提交
gitcherry-vmaster
或者
gitcherry-vmaster<branch-to-be-merged>
可視化地查看整個Version樹
gitlog--pretty=oneline--graph--decorate--all
或者
gitk-all
查看所有在分支1而不在分支2中的提交
gitlogBranch1^Branch2Files:文件信息
展示直到某次提交的全部文件列表
gitls-tree--name-only-r<commit-ish>
展示所有在某次提交中修改的文件
gitdiff-tree--no-commit-id--name-only-r<commit-ish>
展示所有對於某個文件的提交修改
gitlog--follow-p--<file_path>
Manipulation:關於提交的操作
Apply:Commit確認或者應用
利用cherry-pick將某個分支的某個提交跨分支的應用到其他分支
gitcheckout<branch-name>&&gitcherry-pick<commit-ish>
提交時候忽略Staging區域
gitcommit-am<commitmessage>
提交時候忽略某個文件
gitupdate-index--assume-unchangedChangelog;gitcommit-a;gitupdate-index--no-assume-unchangedChangelog
撤銷某個故意忽略
gitupdate-index--no-assume-unchanged<file_name>
將某個提交標記為對之前某個提交的Fixup
gitcommit--fixup<SHA-1>
Reset:將當前分支的HEAD重置到某個提交時候的狀態
重置HEAD到第一次提交
gitupdate-ref-dHEAD
丟棄自某個Commit之後的提交,建議只在私有分支上進行操作。注意,和上一個操作一樣,重置不會修改當前的文件狀態,Git會自動將當前文件與該Commit時候的改變作為Changes列舉出來
gitreset<commit-ish>
Undo&Revert:撤銷與恢復某個Commit
以創建一個新提交的方式撤銷某個提交的操作
gitrevert<commit-ish>
恢復某個文件到某個Commit時候的狀態
gitcheckout<commit-ish>--<file_path>
Update:修改某個Commit
修改上一個提交的信息
gitcommit-v--amend
修改提交的作者信息
gitcommit--amend--author='AuthorName<[email protected]>'
在全局的配置改變了之後,修改某個作者信息
gitcommit--amend--reset-author--no-edit
修改前一個Commit的提交內容但是不修改提交信息
gitadd--all&&gitcommit--amend--no-edit
Branch:分支
Info:信息查看
獲取當前分支名
gitrev-parse--abbrev-refHEAD
Tag
列舉當前分支上最常用的標簽
gitdescribe--tags--abbrev=0
List:分支枚舉
獲取所有本地與遠程的分支
gitbranch-a
只展示遠程分支
gitbranch-r
根據某個Commit的Hash來查找所有關聯分支
gitbranch-a--contains<commit-ish>或者gitbranch--contains<commit-ish>
Changes:某個分支上的修改情況查看
查看兩周以來的所有修改
gitlog--no-merges--raw--since='2weeksago'或者gitwhatchanged--since='2weeksago'
Merger:合並情況查看
追蹤某個分支的上游分支
gitbranch-uorigin/mybranch
列舉出所有的分支以及它們的上游和最後一次提交
gitbranch-vv
列舉出所有已經合並進入Master的分支
gitbranch--mergedmaster
Manipulation:操作
Checkout:檢出與分支切換
快速切換到上一個分支
gitcheckout-
不帶歷史記錄的檢出某個分支
gitcheckout--orphan<branch_name>
Remove:分支移除
刪除本地分支
gitbranch-d<local_branchname>
刪除遠程分支
gitpushorigin--delete<remote_branchname>或者gitpushorigin:<remote_branchname>
移除所有已經合並進入Master的分支
gitbranch--mergedmaster|grep-v'^/*'|xargs-n1gitbranch-d
移除所有在遠端已經被刪除的遠程分支
gitfetch-p或者gitremotepruneorigin
Update:信息更新
修改當前分支名
gitbranch-m<new-branch-name>或者gitbranch-m[<old-branch-name>]<new-branch-name>
rchive:打包
將Master分支打包
gitarchivemaster--format=zip--output=master.zip
將歷史記錄包括分支內容打包到一個文件中
gitbundlecreate<file><branch-name>
從某個Bundle中導入
gitclonerepo.bundle<repo-dir>-b<branch-name>
Merge:合並
Pull&Push:遠程分支合並操作
用pull覆蓋本地內容
gitfetch--all&&gitreset--hardorigin/master
根據Pull的ID拉取某個Pull請求到本地分支
gitfetchoriginpull/<id>/head:<branch-name>
或者
gitpulloriginpull/<id>/head:<branch-name>
Rebase:變基
在Pull時候強制用變基進行操作
gitconfig--globalbranch.autosetuprebasealways
將某個feature分支變基到master,然後合並進master
gitcheckoutfeature&&gitrebase@{-1}&&gitcheckout@{-2}&&gitmerge@{-1}
變基之前自動Stash所有改變
gitrebase--autostash
利用變基自動將fixup提交與正常提交合並
gitrebase-i--autosquash
利用ReBase將前兩個提交合並
gitrebase--interactiveHEAD~2
Diff&Conflict:差異與沖突
Info:信息查看
列舉全部的沖突文件
gitdiff--name-only--diff-filter=U
在編輯器中打開所有沖突文件
gitdiff--name-only|uniq|xargs$EDITOR
Workflow:工作流
SubModules:子模塊
Info:信息查看
Manipulation:操作
利用SubTree方式將某個Project添加到Repo中
gitsubtreeadd--prefix=<directory_name>/<project_name>[email protected]:<username>/<project_name>.gitmaster
更新所有的子模塊
gitsubmoduleforeachgitpull
Work Tree
Manipulation:操作
從某個倉庫中創建一個新的Working Tree
gitworktreeadd-b<branch-name><path><start-point>
從HEAD狀態中創建一個新的Working Tree
gitworktreeadd--detach<path>HEAD
原文來自:http://os.51cto.com/art/201608/515536.htm
本文地址:http://www.linuxprobe.com/some-git-tips.html
http://xxxxxx/Linuxjc/1156006.html TechArticle