Post

Git Tips

Tips

Everyday Git in twenty commands or so

1
git help everyday

Show helpful guides that come with Git

1
git help -g

Search change by content

1
git log -S'<a term in the source>'

Show changes over time for specific file

1
git log -p <file_name>

Remove sensitive data from history, after a push

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

Sync with remote, overwrite local changes

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

List of all files till a commit

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

Git reset first commit

1
git update-ref -d HEAD

Reset: preserve uncommitted local changes

1
git reset --keep <commit>

List all the conflicted files

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

List of all files changed in a commit

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

Unstaged changes since last commit

1
git diff

Changes staged for commit

1
git diff --cached

Alternatives:

1
git diff --staged

Show both staged and unstaged changes

1
git diff HEAD

List all branches that are already merged into master

1
git branch --merged master

Quickly switch to the previous branch

1
git checkout -

Alternatives:

1
git checkout @{-1}

Remove branches that have already been merged with master

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

Alternatives:

1
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

1
git branch -vv

Track upstream branch

1
git branch -u origin/mybranch

Delete local branch

1
git branch -d <local_branchname>

Delete remote branch

1
git push origin --delete <remote_branchname>

Alternatives:

1
git push origin :<remote_branchname>
1
git branch -dr <remote/branch>

Create local tag

1
git tag <tag-name>

Delete local tag

1
git tag -d <tag-name>

Delete remote tag

1
git push origin :refs/tags/<tag-name>

Undo local changes with the last content in head

1
git checkout -- <file_name>

Revert: Undo a commit by creating a new commit

1
git revert <commit-ish>

Reset: Discard commits, advised for private branch

1
git reset <commit-ish>

Reword the previous commit message

1
git commit -v --amend

See commit history for just the current branch

1
git cherry -v master

Amend author

1
git commit --amend --author='Author Name <[email protected]>'

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

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

Changing a remote’s URL

1
git remote set-url origin <URL>

Get list of all remote references

1
git remote

Alternatives:

1
git remote show

Get list of all local and remote branches

1
git branch -a

Get only remote branches

1
git branch -r

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

1
git add -p

Get git bash completion

1
curl -L http://git.io/vfhol > ~/.git-completion.bash && echo '[ -f ~/.git-completion.bash ] && . ~/.git-completion.bash' >> ~/.bashrc

What changed since two weeks?

1
git log --no-merges --raw --since='2 weeks ago'

Alternatives:

1
git whatchanged --since='2 weeks ago'

See all commits made since forking from master

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

Pick commits across branches using cherry-pick

1
git checkout <branch-name> && git cherry-pick <commit-ish>

Find out branches containing commit-hash

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

Alternatives:

1
git branch --contains <commit-ish>

Git Aliases

1
2
git config --global alias.<handle> <command>
git config --global alias.st status

Saving current state of tracked files without commiting

1
git stash

Alternatives:

1
git stash push

Saving current state of unstaged changes to tracked files

1
git stash -k

Alternatives:

1
git stash --keep-index
1
git stash push --keep-index

Saving current state including untracked files

1
git stash -u

Alternatives:

1
git stash push -u
1
git stash push --include-untracked

Saving current state with message

1
git stash push -m <message>

Alternatives:

1
git stash push --message <message>

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

1
git stash -a

Alternatives:

1
git stash --all
1
git stash push --all

Show list of all saved stashes

1
git stash list

Show the contents of any stash in patch form

1
git stash show -p <stash@{n}>

Apply any stash without deleting from the stashed list

1
git stash apply <stash@{n}>

Apply last stashed state and delete it from stashed list

1
git stash pop

Alternatives:

1
git stash apply stash@{0} && git stash drop stash@{0}

Delete all stored stashes

1
git stash clear

Alternatives:

1
git stash drop <stash@{n}>

Grab a single file from a stash

1
git checkout <stash@{n}> -- <file_path>

Alternatives:

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

Show all tracked files

1
git ls-files -t

Show all untracked files

1
git ls-files --others

Show all ignored files

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

Create new working tree from a repository (git 2.5)

1
git worktree add -b <branch-name> <path> <start-point>

Create new working tree from HEAD state

1
git worktree add --detach <path> HEAD

Untrack files without deleting

1
git rm --cached <file_path>

Alternatives:

1
git rm --cached -r <directory_path>

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

1
git clean -n

Forcefully remove untracked files

1
git clean -f

Forcefully remove untracked directory

1
git clean -f -d

Update all the submodules

1
git submodule foreach git pull

Alternatives:

1
git submodule update --init --recursive
1
git submodule update --remote

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

1
git cherry -v master

Alternatives:

1
git cherry -v master <branch-to-be-merged>

Rename a branch

1
git branch -m <new-branch-name>

Alternatives:

1
git branch -m [<old-branch-name>] <new-branch-name>

Rebases ‘feature’ to ‘master’ and merges it in to master

1
git rebase master feature && git checkout master && git merge -

Archive the master branch

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

Modify previous commit without modifying the commit message

1
git add --all && git commit --amend --no-edit

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

1
git fetch -p

Alternatives:

1
git remote prune origin

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

1
git branch -vv | grep ': gone]' | awk '{print <!-- @doxie.inject start -->}' | xargs git branch -D

Retrieve the commit hash of the initial revision

1
 git rev-list --reverse HEAD | head -1

Alternatives:

1
git rev-list --max-parents=0 HEAD
1
git log --pretty=oneline | tail -1 | cut -c 1-40
1
git log --pretty=oneline --reverse | head -1 | cut -c 1-40

Visualize the version tree

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

Alternatives:

1
gitk --all
1
git log --graph --pretty=format:'%C(auto) %h | %s | %an | %ar%d'

Visualize the tree including commits that are only referenced from reflogs

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

Deploying git tracked subfolder to gh-pages

1
git subtree push --prefix subfolder_name origin gh-pages

Adding a project to repo using subtree

1
git subtree add --prefix=<directory_name>/<project_name> --squash [email protected]:<username>/<project_name>.git master

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

1
git subtree pull --prefix=<directory_name>/<project_name> --squash [email protected]:<username>/<project_name>.git master

Export a branch with history to a file

1
git bundle create <file> <branch-name>

Import from a bundle

1
git clone repo.bundle <repo-dir> -b <branch-name>

Get the name of current branch

1
git rev-parse --abbrev-ref HEAD

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

1
git update-index --assume-unchanged Changelog; git commit -a; git update-index --no-assume-unchanged Changelog

Stash changes before rebasing

1
git rebase --autostash

Fetch pull request by ID to a local branch

1
git fetch origin pull/<id>/head:<branch-name>

Alternatives:

1
git pull origin pull/<id>/head:<branch-name>

Show the most recent tag on the current branch

1
git describe --tags --abbrev=0

Show inline word diff

1
git diff --word-diff

Show changes using common diff tools

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

Don’t consider changes for tracked file

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

Undo assume-unchanged

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

Clean the files from .gitignore

1
git clean -X -f

Restore deleted file

1
git checkout <deleting_commit> -- <file_path>

Restore file to a specific commit-hash

1
git checkout <commit-ish> -- <file_path>

Always rebase instead of merge on pull

1
git config --global pull.rebase true

Alternatives:

1
2
#git < 1.7.9
git config --global branch.autosetuprebase always

List all the alias and configs

1
git config --list

Make git case sensitive

1
git config --global core.ignorecase false

Add custom editors

1
git config --global core.editor '$EDITOR'

Auto correct typos

1
git config --global help.autocorrect 1

Check if the change was a part of a release

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

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

1
git clean -fd --dry-run

Marks your commit as a fix of a previous commit

1
git commit --fixup <SHA-1>

Squash fixup commits normal commits

1
git rebase -i --autosquash

Skip staging area during commit

1
git commit --only <file_path>

Interactive staging

1
git add -i

List ignored files

1
git check-ignore *

Status of ignored files

1
git status --ignored

Commits in Branch1 that are not in Branch2

1
git log Branch1 ^Branch2

List n last commits

1
git log -<n>

Alternatives:

1
git log -n <n>

Reuse recorded resolution, record and reuse previous conflicts resolutions

1
git config --global rerere.enabled 1

Open all conflicted files in an editor

1
git diff --name-only | uniq | xargs $EDITOR

Count unpacked number of objects and their disk consumption

1
git count-objects --human-readable

Prune all unreachable objects from the object database

1
git gc --prune=now --aggressive

Instantly browse your working repository in gitweb

1
git instaweb [--local] [--httpd=<httpd>] [--port=<port>] [--browser=<browser>]

View the GPG signatures in the commit log

1
git log --show-signature

Remove entry in the global config

1
git config --global --unset <entry-name>

Checkout a new branch without any history

1
git checkout --orphan <branch_name>

Extract file from another branch

1
git show <branch_name>:<file_name>

List only the root and merge commits

1
git log --first-parent

Change previous two commits with an interactive rebase

1
git rebase --interactive HEAD~2

List all branch is WIP

1
git checkout master && git branch --no-merged
1
2
3
4
5
6
7
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

1
git commit --no-verify

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

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

Clone a single branch

1
git clone -b <branch-name> --single-branch https://github.com/user/repo.git

Create and switch new branch

1
git checkout -b <branch-name>

Alternatives:

1
git branch <branch-name> && git checkout <branch-name>
1
git switch -c <branch-name>

Ignore file mode changes on commits

1
git config core.fileMode false

Turn off git colored terminal output

1
git config --global color.ui false

Specific color settings

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

Show all local branches ordered by recent commits

1
git for-each-ref --sort=-committerdate --format='%(refname:short)' refs/heads/

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

1
git grep --heading --line-number 'foo bar'

Clone a shallow copy of a repository

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

Search Commit log across all branches for given text

1
git log --all --grep='<given-text>'

Get first commit in a branch (from master)

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

Alternatives:

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

Unstaging Staged file

1
git reset HEAD <file-name>

Force push to Remote Repository

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

Adding Remote name

1
git remote add <remote-nickname> <remote-url>

List all currently configured remotes

1
git remote -v

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

1
git blame <file-name>

Group commits by authors and title

1
git shortlog

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

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

Show how many lines does an author contribute

1
2
git log --author='_Your_Name_Here_' --pretty=tformat: --numstat | gawk '{ add += <!-- @doxie.inject start -->; subs += <!-- @doxie.inject end -->; loc += <!-- @doxie.inject start --> - <!-- @doxie.inject end --> } END { printf "added lines: %s removed lines: %s total lines: %s
", add, subs, loc }' -

Alternatives:

1
2
git log --author='_Your_Name_Here_' --pretty=tformat: --numstat | awk '{ add += <!-- @doxie.inject start -->; subs += <!-- @doxie.inject end -->; loc += <!-- @doxie.inject start --> - <!-- @doxie.inject end --> } END { printf "added lines: %s, removed lines: %s, total lines: %s
", add, subs, loc }' - # on Mac OSX

Revert: Reverting an entire merge

1
git revert -m 1 <commit-ish>

Number of commits in a branch

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

Alias: git undo

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

Add object notes

1
git notes add -m 'Note on the previous commit....'

Show all the git-notes

1
git log --show-notes='*'

Apply commit from another repository

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

Specific fetch reference

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

Find common ancestor of two branches

1
git merge-base <branch-name> <other-branch-name>

List unpushed git commits

1
git log --branches --not --remotes

Alternatives:

1
git log @{u}..
1
git cherry -v

Add everything, but whitespace changes

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

Edit [local/global] git config

1
git config [--global] --edit

blame on certain range

1
git blame -L <start>,<end>

Show a Git logical variable

1
git var -l | <variable>

Preformatted patch file

1
git format-patch -M upstream..topic

Get the repo name

1
git rev-parse --show-toplevel

logs between date range

1
git log --since='FEB 1 2017' --until='FEB 14 2017'

Exclude author from logs

1
2
git log --perl-regexp --author='^((?!excluded-author-regex).*)

Generates a summary of pending changes

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

List references in a remote repository

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

Backup untracked files

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

List all git aliases

1
git config -l | grep alias | sed 's/^alias\.//g'

Alternatives:

1
git config -l | grep alias | cut -d '.' -f 2

Show git status short

1
git status --short --branch

Checkout a commit prior to a day ago

1
git checkout master@{yesterday}

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

1
git push origin HEAD

Push a new local branch to remote repository and track

1
git push -u origin <branch_name>

Change a branch base

1
git rebase --onto <new_base> <old_base>

Use SSH instead of HTTPs for remotes

1
git config --global url.'[email protected]:'.insteadOf 'https://github.com/'

Update a submodule to the latest commit

1
2
3
4
5
cd <path-to-submodule>
git pull origin <branch>
cd <root-of-your-main-project>
git add <path-to-submodule>
git commit -m "submodule updated"

Prevent auto replacing LF with CRLF

1
git config --global core.autocrlf false

References

This post is licensed under CC BY 4.0 by the author.