原文地址,筆者將原Repo上的命令進行了整理,但願能有所幫助。不過這種分類方式只是筆者本身總結的,包括一些說明若存在謬誤請及時指教。
Github 系列文章地址git
列舉全部的別名與配置github
git config --list
Git 別名配置數據庫
git config --global alias.<handle> <command> git config --global alias.st status
設置git爲大小寫敏感緩存
git config --global core.ignorecase false
在git 命令行裏查看everyday gitbash
git help everyday
顯示git經常使用的幫助命令app
git help -g
獲取Git Bash的自動補全curl
curl http://git.io/vfhol > ~/.git-completion.bash && echo '[ -f ~/.git-completion.bash ] && . ~/.git-completion.bash' >> ~/.bashrc
設置自動更正編輯器
git config --global help.autocorrect 1
獲取全部遠端引用配置fetch
git remote
或者url
git remote show
修改某個遠端的地址
git remote set-url origin <URL>
查看當前倉庫中的全部未打包的objects和磁盤佔用
git count-objects --human-readable
從object數據庫中刪除全部不可達的object
git gc --prune=now --aggressive
展現全部被追蹤的文件
git ls-files -t
展現全部未被追蹤的分支
git ls-files --others
展現全部被忽略的文件
git ls-files --others -i --exclude-standard git check-ignore * git status --ignored
中止追蹤某個文件可是不刪除它
git rm --cached <file_path>
或者
git rm --cached -r <directory_path>
強制刪除未被追蹤的文件或者目錄
git clean -f git clean -f -d git clean -df
清空.gitignore
git clean -X -f
查看上次提交以後的未暫存文件
git diff
查看準備用於提交的暫存了的修改的文件
git diff --cached
顯示全部暫存與未暫存的文件
git diff HEAD
查看最新的文件版本與Stage中區別
git diff --staged
Stage某個文件的部分修改而不是所有
git add -p
以HEAD中的最新的內容覆蓋某個本地文件的修改
git checkout -- <file_name>
展現全部保存的Stashes
git stash list
保存當前追蹤的文件修改狀態而不提交,並使得工做空間恢復乾淨
git stash
或者
git stash save
保存全部文件修改,包括未追蹤的文件
git stash save -u
或者
git stash save --include-untracked
應用任何的Stash而不從Stash列表中刪除
git stash apply <stash@{n}>
應用而且刪除Stash列表中的最後一個
git stash pop
或者
git stash apply stash@{0} && git stash drop stash@{0}
刪除所有存儲的Stashes
git stash clear
或者
git stash drop <stash@{n}>
從某個Stash中應用單個文件
git checkout <stash@{n}> -- <file_path>
或者
git checkout stash@{0} -- <file_path>
檢索某個提交的Hash值
git rev-list --reverse HEAD | head -1
查看自Fork Master以來的所有提交
git log --no-merges --stat --reverse master..
展現當前分支中全部還沒有合併到Master中的提交
git cherry -v master
或者
git cherry -v master <branch-to-be-merged>
可視化地查看整個Version樹
git log --pretty=oneline --graph --decorate --all
或者
gitk -all
查看全部在分支1而不在分支2中的提交
git log Branch1 ^Branch2
展現直到某次提交的所有文件列表
git ls-tree --name-only -r <commit-ish>
展現全部在某次提交中修改的文件
git diff-tree --no-commit-id --name-only -r <commit-ish>
展現全部對於某個文件的提交修改
git log --follow -p -- <file_path>
利用cherry-pick將某個分支的某個提交跨分支的應用到其餘分支
git checkout <branch-name> && git cherry-pick <commit-ish>
提交時候忽略Staging區域
git commit -am <commit message>
提交時候忽略某個文件
git update-index --assume-unchanged Changelog; git commit -a; git update-index --no-assume-unchanged Changelog
撤銷某個故意忽略
git update-index --no-assume-unchanged <file_name>
將某個提交標記爲對以前某個提交的Fixup
git commit --fixup <SHA-1>
重置HEAD到第一次提交
git update-ref -d HEAD
丟棄自某個Commit以後的提交,建議只在私有分支上進行操做。注意,和上一個操做同樣,重置不會修改當前的文件狀態,Git會自動將當前文件與該Commit時候的改變做爲Changes列舉出來
git reset <commit-ish>
以建立一個新提交的方式撤銷某個提交的操做
git revert <commit-ish>
恢復某個文件到某個Commit時候的狀態
git checkout <commit-ish> -- <file_path>
修改上一個提交的信息
git commit -v --amend
修改提交的做者信息
git commit --amend --author='Author Name <email@address.com>'
在全局的配置改變了以後,修改某個做者信息
git commit --amend --reset-author --no-edit
修改前一個Commit的提交內容可是不修改提交信息
git add --all && git commit --amend --no-edit
獲取當前分支名
git rev-parse --abbrev-ref HEAD
列舉當前分支上最經常使用的標籤
git describe --tags --abbrev=0
獲取全部本地與遠程的分支
git branch -a
只展現遠程分支
git branch -r
根據某個Commit的Hash來查找全部關聯分支
git branch -a --contains <commit-ish>
或者
git branch --contains <commit-ish>
查看兩週以來的全部修改
git log --no-merges --raw --since='2 weeks ago'
或者
git whatchanged --since='2 weeks ago'
追蹤某個分支的上游分支
git branch -u origin/mybranch
列舉出全部的分支以及它們的上游和最後一次提交
git branch -vv
列舉出全部已經合併進入Master的分支
git branch --merged master
快速切換到上一個分支
git checkout -
不帶歷史記錄的檢出某個分支
git checkout --orphan <branch_name>
刪除本地分支
git branch -d <local_branchname>
刪除遠程分支
git push origin --delete <remote_branchname>
或者
git push origin :<remote_branchname>
移除全部已經合併進入Master的分支
git branch --merged master | grep -v '^\*' | xargs -n 1 git branch -d
移除全部在遠端已經被刪除的遠程分支
git fetch -p
或者
git remote prune origin
修改當前分支名
git branch -m <new-branch-name>
或者
git branch -m [<old-branch-name>] <new-branch-name>
將Master分支打包
git archive master --format=zip --output=master.zip
將歷史記錄包括分支內容打包到一個文件中
git bundle create <file> <branch-name>
從某個Bundle中導入
git clone repo.bundle <repo-dir> -b <branch-name>
用pull覆蓋本地內容
git fetch --all && git reset --hard origin/master
根據Pull的ID拉取某個Pull請求到本地分支
git fetch origin pull/<id>/head:<branch-name>
或者
git pull origin pull/<id>/head:<branch-name>
在Pull時候強制用變基進行操做
git config --global branch.autosetuprebase always
將某個feature分支變基到master,而後合併進master
git checkout feature && git rebase @{-1} && git checkout @{-2} && git merge @{-1}
變基以前自動Stash全部改變
git rebase --autostash
利用變基自動將fixup提交與正常提交合並
git rebase -i --autosquash
利用ReBase將前兩個提交合並
git rebase --interactive HEAD~2
列舉所有的衝突文件
git diff --name-only --diff-filter=U
在編輯器中打開全部衝突文件
git diff --name-only | uniq | xargs $EDITOR
利用SubTree方式將某個Project添加到Repo中
git subtree add --prefix=<directory_name>/<project_name> --squash git@github.com:<username>/<project_name>.git master
更新全部的子模塊
git submodule foreach git pull
從某個倉庫中建立一個新的Working Tree
git worktree add -b <branch-name> <path> <start-point>
從HEAD狀態中建立一個新的Working Tree
git worktree add --detach <path> HEAD