Skip to content

Git Tips

git-tips

> git-tips 合集,想添加你的技巧吗? 查看 contributing.md

English | 中文 | Русский | 한국어 | Tiếng Việt | 日本語 | नेपाली | Polski | فارسی

Tools:

PS:所有这些命令都在 git version 2.7.4 (Apple Git-66) 上进行了测试.

Everyday Git in twenty commands or so

每天都有 git 帮助

Show helpful guides that come with Git

git 帮助 -g
git 日志 -S&#39; <a term in the source>&#39;</a>

Show changes over time for specific file

git 日志 -p<file_name>

Remove sensitive data from history, after a push

 git filter-branch --force --index-filter &#39;git rm --cached --ignore-unmatch<path-to-your-file>  &#39; --prune-empty --tag-name-filter cat -- --all &amp;&amp; git push origin --force --all

Sync with remote, overwrite local changes

git fetch origin &amp;&amp; git reset --hard origin/master &amp;&amp; git clean -f -d

List of all files till a commit

git ls-tree --name-only -r<commit-ish>

Git reset first commit

git update-ref -d HEAD

Reset: preserve uncommitted local changes

git 重置 --keep<commit>

List all the conflicted files

git diff --name-only --diff-filter=U

List of all files changed in a commit

git diff-tree --no-commit-id --name-only -r<commit-ish>

Unstaged changes since last commit

比较差异

Changes staged for commit

git diff --cached

Alternatives:

git diff --staged

Show both staged and unstaged changes

git 差异头

List all branches that are already merged into master

git branch --merged master

Quickly switch to the previous branch

git结帐-

Alternatives:

git checkout @{-1}

Remove branches that have already been merged with master

git branch --merged master | grep -v '^\*' | xargs -n 1 git branch -d

Alternatives:

git branch --merged master | grep -v '^\*\|  master' | xargs -n 1 git branch -d # will not delete master if master is not checked out

List all branches and their upstreams, as well as last commit on branch

git 分支 -vv

Track upstream branch

git branch -u 原点/mybranch

Delete local branch

git 分支 -d<local_branchname>

Delete remote branch

git push origin --delete<remote_branchname>

Alternatives:

git 推送来源:<remote_branchname>

git 分支-dr<remote/branch>

Create local tag

吉日<tag-name>

Delete local tag

git 标签 -d<tag-name>

Delete remote tag

git push 原点:refs/标签/<tag-name>
git结账——<file_name>

Revert: Undo a commit by creating a new commit

git 恢复<commit-ish>

Reset: Discard commits, advised for private branch

git 重置<commit-ish>

Reword the previous commit message

git commit -v --amend

See commit history for just the current branch

git cherry -v 大师

Amend author.

 git commit --amend --author=&#39;作者姓名<email@address.com> &#39;

Reset author, after author has been changed in the global config.

git commit --amend --reset-author --no-edit

Changing a remote's URL

git 远程设置 url 来源<URL>

Get list of all remote references

git远程

Alternatives:

git远程显示

Get list of all local and remote branches

git 分支 -a

Get only remote branches

git 分支 -r

Stage parts of a changed file, instead of the entire file

git 添加 -p

Get git bash completion

 curl -L http://git.io/vfhol &gt; ~/.git-completion.bash &amp;&amp; echo &#39;[ -f ~/.git-completion.bash ] &amp;&amp; .  ~/.git-completion.bash&#39; &gt;&gt; ~/.bashrc

What changed since two weeks?

git log --no-merges --raw --since=&#39;2 周前&#39;

Alternatives:

git whatchanged --since=&#39;2 周前&#39;

See all commits made since forking from master

git log --no-merges --stat --reverse master..

Pick commits across branches using cherry-pick

结帐<branch-name> &amp;&amp; git 樱桃挑选<commit-ish>

Find out branches containing commit-hash

git branch -a --contains<commit-ish>

Alternatives:

git 分支 --contains<commit-ish>

Git Aliases

git config --global 别名.<handle><command> 
git config --global alias.st 状态

Saving current state of tracked files without commiting

git 存储

Alternatives:

git 隐藏推送

Saving current state of unstaged changes to tracked files

git 存储 -k

Alternatives:

git stash --keep-index

git stash push --keep-index

Saving current state including untracked files

git 存储 -u

Alternatives:

git stash push -u

git stash push --include-untracked

Saving current state with message

git stash push -m<message>

Alternatives:

git stash push——消息<message>

Saving current state of all files (ignored, untracked, and tracked)

git 存储 -a

Alternatives:

git stash --all

git stash push --all

Show list of all saved stashes

git 存储列表
git 存储显示 -p<stash@{n}>

Apply any stash without deleting from the stashed list

git 存储应用<stash@{n}>

Apply last stashed state and delete it from stashed list

git 存储弹出

Alternatives:

git stash apply stash@{0} &amp;&amp; git stash drop stash@{0}

Delete all stored stashes

git 存储清除

Alternatives:

git 存储下降<stash@{n}>

Grab a single file from a stash

结帐<stash@{n}> --<file_path>

Alternatives:

git checkout stash@{0} --<file_path>

Show all tracked files

git ls-文件-t

Show all untracked files

git ls-files --others

Show all ignored files

git ls-files --others -i --exclude-standard

Create new working tree from a repository (git 2.5)

git worktree 添加-b<branch-name><path><start-point>

Create new working tree from HEAD state

 git worktree 添加 --detach<path> 

Untrack files without deleting

git rm --缓存<file_path>

Alternatives:

git rm --cached -r<directory_path>

Before deleting untracked files/directory, do a dry run to get the list of these files/directories

混帐清洁-n

Forcefully remove untracked files

混帐清理-f

Forcefully remove untracked directory

git clean -f -d

Update all the submodules

git 子模块 foreach git pull

Alternatives:

git 子模块更新 --init --recursive

git 子模块更新 --remote

Show all commits in the current branch yet to be merged to master

git cherry -v 大师

Alternatives:

git cherry -v 大师<branch-to-be-merged>

Rename a branch

git 分支 -m<new-branch-name>

Alternatives:

 git 分支-m [<old-branch-name>  ]<new-branch-name>

Rebases 'feature' to 'master' and merges it in to master

git rebase master feature &amp;&amp; git checkout master &amp;&amp; git merge -

Archive the master branch

git archive master --format=zip --output=master.zip

Modify previous commit without modifying the commit message

git add --all &amp;&amp; git commit --amend --no-edit

Prunes references to remove branches that have been deleted in the remote.

git 获取 -p

Alternatives:

git 远程修剪源

Delete local branches that has been squash and merged in the remote.

 git 分支-vv |  grep &#39;: gone]&#39; |  awk &#39;{打印<!-- @doxie.inject start --> }&#39; |  xargs git 分支-D

Retrieve the commit hash of the initial revision.

  git rev-list --reverse  | 头-1

Alternatives:

git rev-list --max-parents=0 

 git 日志 --pretty=oneline | 尾-1 | 切-c 1-40
 git log --pretty=oneline --reverse | 头-1 | 切-c 1-40

Visualize the version tree.

git log --pretty=oneline --graph --decorate --all

Alternatives:

gitk --all

 git log --graph --pretty=format:&#39;%C(auto) %h |  %s |  %一个 |  %ar%d&#39;

Visualize the tree including commits that are only referenced from reflogs

git log --graph --decorate --oneline $(git rev-list --walk-reflogs --all)

Deploying git tracked subfolder to gh-pages

git subtree push --prefix subfolder_name origin gh-pages

Adding a project to repo using subtree

 git 子树添加 --prefix=<directory_name>  /<project_name>  --squash git@github.com:<username>  /<project_name>  .git 大师

Get latest changes in your repo for a linked project using subtree

 git subtree pull --prefix=<directory_name>  /<project_name>  --squash git@github.com:<username>  /<project_name>  .git 大师

Export a branch with history to a file.

git 捆绑创建<file><branch-name>

Import from a bundle

 git 克隆 repo.bundle<repo-dir>  -b<branch-name>

Get the name of current branch.

git rev-parse --abbrev-ref HEAD

Ignore one file on commit (e.g. Changelog).

 git update-index --assume-unchanged 更新日志;  git提交-a;  git update-index --no-assume-unchanged 更新日志

Stash changes before rebasing

git fox --autostash

Fetch pull request by ID to a local branch

 git fetch 原点拉/<id>  /头:<branch-name>

Alternatives:

 git pull 原点拉/<id>  /头:<branch-name>

Show the most recent tag on the current branch.

git describe --tags --abbrev=0

Show inline word diff.

git diff --word-diff

Show changes using common diff tools.

 git difftool [-t<tool>  ]<commit1><commit2><path>

Don’t consider changes for tracked file.

git update-index --assume-unchanged<file_name>

Undo assume-unchanged.

git update-index --no-assume-unchanged<file_name>

Clean the files from .gitignore.

git clean -X -f

Restore deleted file.

结帐<deleting_commit> --<file_path>

Restore file to a specific commit-hash

结帐<commit-ish> --<file_path>

Always rebase instead of merge on pull.

git config --global pull.rebase true

Alternatives:

#git < 1.7.9
git config --global branch.autosetuprebase 总是

List all the alias and configs.

git 配置--列表

Make git case sensitive.

git config --global core.ignorecase false

Add custom editors.

git config --global core.editor &#39;$EDITOR&#39;

Auto correct typos.

git config --global help.autocorrect 1

Check if the change was a part of a release.

git name-rev --name-only<SHA-1>

Dry run. (any command that supports dry-run flag should do.)

git clean -fd --dry-run

Marks your commit as a fix of a previous commit.

git commit --fixup<SHA-1>

Squash fixup commits normal commits.

git fox -i --autosquash

Skip staging area during commit.

git commit --only<file_path>

Interactive staging.

git 添加 -i

List ignored files.

git 检查忽略 *

Status of ignored files.

git状态——被忽略

Commits in Branch1 that are not in Branch2

git log 分支 1 ^ 分支 2

List n last commits

git 日志 -<n>

Alternatives:

git 日志 -n<n>

Reuse recorded resolution, record and reuse previous conflicts resolutions.

git config --global rerere.enabled 1

Open all conflicted files in an editor.

 git diff --name-only | 独特 |  xargs $编辑器

Count unpacked number of objects and their disk consumption.

git count-objects --human-readable

Prune all unreachable objects from the object database.

git gc --prune=now --aggressive

Instantly browse your working repository in gitweb.

 git instaweb [--local] [--httpd=<httpd>  ] [--端口=<port>  ] [--浏览器=<browser>  ]

View the GPG signatures in the commit log

git log --show-签名

Remove entry in the global config.

git 配置 --global --unset<entry-name>

Checkout a new branch without any history

git checkout --orphan<branch_name>

Extract file from another branch.

混帐显示<branch_name> :<file_name>

List only the root and merge commits.

git log --first-parent

Change previous two commits with an interactive rebase.

git rebase --interactive HEAD~2

List all branch is WIP

git checkout master &amp;&amp; git branch --no-merged
git bisect start                    # Search start 
git bisect bad                      # Set point to bad commit 
git bisect good v2.6.13-rc2         # Set point to good commit|tag 
git bisect bad                      # Say current state is bad 
git bisect good                     # Say current state is good 
git bisect reset                    # Finish search 

Bypass pre-commit and commit-msg githooks

git commit --no-verify

List commits and changes to a specific file (even through renaming)

git log --follow -p --<file_path>

Clone a single branch

 git 克隆 -b<branch-name>  --单分支 https://github.com/user/repo.git

Create and switch new branch

git结帐-b<branch-name>

Alternatives:

分支<branch-name> &amp;&amp; 结帐<branch-name>

git 开关 -c<branch-name>

Ignore file mode changes on commits

git config core.fileMode false

Turn off git colored terminal output

git config --global color.ui false

Specific color settings

git 配置 --global<specific command e.g branch, diff><true, false or always>

Show all local branches ordered by recent commits

git for-each-ref --sort=-committerdate --format=&#39;%(refname:short)&#39; refs/heads/

Find lines matching the pattern (regex or string) in tracked files

git grep --heading --line-number &#39;foo bar&#39;

Clone a shallow copy of a repository

git clone https://github.com/user/repo.git --depth 1

Search Commit log across all branches for given text

 git log --all --grep=&#39;<given-text>  &#39;

Get first commit in a branch (from master)

 git log --oneline master..<branch-name>  | 尾巴-1

Alternatives:

 git log --reverse master..<branch-name>  | 头-6

Unstaging Staged file

git 重置 HEAD<file-name>

Force push to Remote Repository

git push -f<remote-name><branch-name>

Adding Remote name

git 远程添加<remote-nickname><remote-url>

List all currently configured remotes

git远程-v

Show the author, time and last revision made to each line of a given file

指责<file-name>

Group commits by authors and title

git 简报

Forced push but still ensure you don't overwrite other's work

git push --force-with-lease<remote-name><branch-name>

Show how many lines does an author contribute

 git log --author=&#39;_Your_Name_Here_&#39; --pretty=tformat: --numstat | 呆呆的&#39;{ 添加 +=<!-- @doxie.inject start -->  ; 潜艇+=<!-- @doxie.inject end -->  ; 地点+=<!-- @doxie.inject start -->  -<!-- @doxie.inject end -->  } END { printf &quot;添加行:%s 删除行:%s 总行数:%s
&quot;, 添加, 潜艇, loc }&#39; -

Alternatives:

 git log --author=&#39;_Your_Name_Here_&#39; --pretty=tformat: --numstat |  awk &#39;{ 添加 +=<!-- @doxie.inject start -->  ; 潜艇+=<!-- @doxie.inject end -->  ; 地点+=<!-- @doxie.inject start -->  -<!-- @doxie.inject end -->  } END { printf &quot;添加行:%s,删除行:%s,总行数:%s
", add, subs, loc }' - # on Mac OSX

Revert: Reverting an entire merge

git 恢复-m 1<commit-ish>

Number of commits in a branch

git rev-list --count<branch-name>

Alias: git undo

 git config --global alias.undo &#39;!f() { git reset --hard $(git rev-parse --abbrev-ref HEAD)@{${1-1}};  };  F&#39;

Add object notes

git notes add -m &#39;注意上次提交....&#39;

Show all the git-notes

git log --show-notes=&#39;*&#39;

Apply commit from another repository

 git --git-dir=<source-dir>  /.git format-patch -k -1 --stdout<SHA1>  |  git am -3 -k

Specific fetch reference

git fetch origin master:refs/remotes/origin/mymaster

Find common ancestor of two branches

git 合并基础<branch-name><other-branch-name>

List unpushed git commits

git log --branches --not --remotes

Alternatives:

git 日志 @{u}..

混帐樱桃-v

Add everything, but whitespace changes

 git diff --ignore-all-space |  git apply --cached

Edit [local/global] git config

git 配置 [--global] --edit

blame on certain range

 git责备-L<start>  ,<end>

Show a Git logical variable.

混帐变种-l |<variable>

Preformatted patch file.

git format-patch -M upstream..topic

Get the repo name.

git rev-parse --show-toplevel

logs between date range

git log --since=&#39;2017 年 2 月 1 日&#39; --until=&#39;2017 年 2 月 14 日&#39;

Exclude author from logs

git log --perl-regexp --author=&#39;^((?!excluded-author-regex).*)

Generates a summary of pending changes

git request-pull v1.0 https://git.ko.xz/project master:for-linus

List references in a remote repository

git ls-remote git://git.kernel.org/pub/scm/git/git.git

Backup untracked files.

 git ls-files --others -i --exclude-standard |  xargs zip untracked.zip

List all git aliases

 git 配置 -l |  grep 别名 |  sed &#39;s/^别名\.//g&#39;

Alternatives:

 git 配置 -l |  grep 别名 | 切-d &#39;.&#39;  -f 2

Show git status short

git status --short --branch

Checkout a commit prior to a day ago

git checkout master@{昨天}

Push the current branch to the same name on the remote repository

git push 原点 HEAD

Push a new local branch to remote repository and track

git push -u 原点<branch_name>

Change a branch base

git rebase --onto<new_base><old_base>

Use SSH instead of HTTPs for remotes

git config --global url.&#39;git@github.com:&#39;.insteadOf &#39;https://github.com/&#39;

Update a submodule to the latest commit

光盘<path-to-submodule>
git 拉出原点<branch>
光盘<root-of-your-main-project>
添加<path-to-submodule>
git commit -m “子模块已更新”

Prevent auto replacing LF with CRLF

git config --global core.autocrlf false