2016-06-07 18:34:22 +00:00
[ {
2016-03-29 16:11:53 +00:00
"title" : "Everyday Git in twenty commands or so" ,
"tip" : "git help everyday"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Show helpful guides that come with Git" ,
"tip" : "git help -g"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Overwrite pull" ,
"tip" : "git fetch --all && git reset --hard origin/master"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "List of all files till a commit" ,
"tip" : "git ls-tree --name-only -r <commit-ish>"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Git reset first commit" ,
"tip" : "git update-ref -d HEAD"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "List all the conflicted files" ,
"tip" : "git diff --name-only --diff-filter=U"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "List of all files changed in a commit" ,
"tip" : "git diff-tree --no-commit-id --name-only -r <commit-ish>"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Unstaged changes since last commit" ,
"tip" : "git diff"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Changes staged for commit" ,
2016-06-12 14:41:16 +00:00
"tip" : "git diff --cached" ,
2016-06-13 11:47:46 +00:00
"alternatives" : [ "git diff --staged" ]
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Show both staged and unstaged changes" ,
"tip" : "git diff HEAD"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "List all branches that are already merged into master" ,
2016-06-07 07:30:05 +00:00
"tip" : "git branch --merged master"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Quickly switch to the previous branch" ,
"tip" : "git checkout -"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Remove branches that have already been merged with master" ,
2016-06-13 18:17:54 +00:00
"tip" : "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" ]
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "List all branches and their upstreams, as well as last commit on branch" ,
"tip" : "git branch -vv"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Track upstream branch" ,
"tip" : "git branch -u origin/mybranch"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Delete local branch" ,
"tip" : "git branch -d <local_branchname>"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Delete remote branch" ,
"tip" : "git push origin --delete <remote_branchname>" ,
2016-06-07 18:34:22 +00:00
"alternatives" : [ "git push origin :<remote_branchname>" ]
} , {
2016-03-29 16:11:53 +00:00
"title" : "Undo local changes with the last content in head" ,
"tip" : "git checkout -- <file_name>"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Revert: Undo a commit by creating a new commit" ,
"tip" : "git revert <commit-ish>"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Reset: Discard commits, advised for private branch" ,
"tip" : "git reset <commit-ish>"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Reword the previous commit message" ,
"tip" : "git commit -v --amend"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Amend author." ,
"tip" : "git commit --amend --author='Author Name <email@address.com>'"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Reset author, after author has been changed in the global config." ,
"tip" : "git commit --amend --reset-author --no-edit"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Changing a remote's URL" ,
"tip" : "git remote set-url origin <URL>"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Get list of all remote references" ,
"tip" : "git remote" ,
2016-06-07 18:34:22 +00:00
"alternatives" : [ "git remote show" ]
} , {
2016-03-29 16:11:53 +00:00
"title" : "Get list of all local and remote branches" ,
"tip" : "git branch -a"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Get only remote branches" ,
"tip" : "git branch -r"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Stage parts of a changed file, instead of the entire file" ,
"tip" : "git add -p"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Get git bash completion" ,
"tip" : "curl http://git.io/vfhol > ~/.git-completion.bash && echo '[ -f ~/.git-completion.bash ] && . ~/.git-completion.bash' >> ~/.bashrc"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "What changed since two weeks?" ,
2016-06-07 07:42:13 +00:00
"tip" : "git log --no-merges --raw --since='2 weeks ago'" ,
"alternatives" : [ "git whatchanged --since='2 weeks ago'" ]
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "See all commits made since forking from master" ,
"tip" : "git log --no-merges --stat --reverse master.."
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Pick commits across branches using cherry-pick" ,
2016-06-01 16:49:41 +00:00
"tip" : "git checkout <branch-name> && git cherry-pick <commit-ish>"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Find out branches containing commit-hash" ,
"tip" : "git branch -a --contains <commit-ish>" ,
2016-06-07 18:34:22 +00:00
"alternatives" : [ "git branch --contains <commit-ish>" ]
} , {
2016-03-29 16:11:53 +00:00
"title" : "Git Aliases" ,
"tip" : "git config --global alias.<handle> <command> \ngit config --global alias.st status"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Saving current state of tracked files without commiting" ,
"tip" : "git stash" ,
2016-06-07 18:34:22 +00:00
"alternatives" : [ "git stash save" ]
} , {
2016-03-29 16:11:53 +00:00
"title" : "Saving current state including untracked files" ,
"tip" : "git stash save -u" ,
2016-06-07 18:34:22 +00:00
"alternatives" : [ "git stash save --include-untracked" ]
} , {
2016-03-29 16:11:53 +00:00
"title" : "Show list of all saved stashes" ,
"tip" : "git stash list"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Apply any stash without deleting from the stashed list" ,
"tip" : "git stash apply <stash@{n}>"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Apply last stashed state and delete it from stashed list" ,
"tip" : "git stash pop" ,
2016-06-07 18:34:22 +00:00
"alternatives" : [ "git stash apply stash@{0} && git stash drop stash@{0}" ]
} , {
2016-03-29 16:11:53 +00:00
"title" : "Delete all stored stashes" ,
"tip" : "git stash clear" ,
2016-06-07 18:34:22 +00:00
"alternatives" : [ "git stash drop <stash@{n}>" ]
} , {
2016-03-29 16:11:53 +00:00
"title" : "Grab a single file from a stash" ,
"tip" : "git checkout <stash@{n}> -- <file_path>" ,
2016-06-07 18:34:22 +00:00
"alternatives" : [ "git checkout stash@{0} -- <file_path>" ]
} , {
2016-03-29 16:11:53 +00:00
"title" : "Show all tracked files" ,
"tip" : "git ls-files -t"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Show all untracked files" ,
"tip" : "git ls-files --others"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Show all ignored files" ,
"tip" : "git ls-files --others -i --exclude-standard"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Create new working tree from a repository (git 2.5)" ,
"tip" : "git worktree add -b <branch-name> <path> <start-point>"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Create new working tree from HEAD state" ,
"tip" : "git worktree add --detach <path> HEAD"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Untrack files without deleting" ,
"tip" : "git rm --cached <file_path>" ,
2016-06-07 18:34:22 +00:00
"alternatives" : [ "git rm --cached -r <directory_path>" ]
} , {
2016-03-29 16:11:53 +00:00
"title" : "Before deleting untracked files/directory, do a dry run to get the list of these files/directories" ,
"tip" : "git clean -n"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Forcefully remove untracked files" ,
"tip" : "git clean -f"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Forcefully remove untracked directory" ,
"tip" : "git clean -f -d" ,
2016-06-07 18:34:22 +00:00
"alternatives" : [ "git clean -df" ]
} , {
2016-03-29 16:11:53 +00:00
"title" : "Update all the submodules" ,
"tip" : "git submodule foreach git pull"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Show all commits in the current branch yet to be merged to master" ,
"tip" : "git cherry -v master" ,
2016-06-07 18:34:22 +00:00
"alternatives" : [ "git cherry -v master <branch-to-be-merged>" ]
} , {
2016-03-29 16:11:53 +00:00
"title" : "Rename a branch" ,
"tip" : "git branch -m <new-branch-name>" ,
2016-06-07 18:34:22 +00:00
"alternatives" : [ "git branch -m [<old-branch-name>] <new-branch-name>" ]
} , {
2016-03-29 16:11:53 +00:00
"title" : "rebases 'feature' to 'master' and merges it in to master " ,
"tip" : "git checkout feature && git rebase @{-1} && git checkout @{-2} && git merge @{-1}"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Archive the `master` branch" ,
"tip" : "git archive master --format=zip --output=master.zip"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Modify previous commit without modifying the commit message" ,
"tip" : "git add --all && git commit --amend --no-edit"
2016-06-07 18:34:22 +00:00
} , {
2016-06-02 11:14:25 +00:00
"title" : "Prunes references to remote branches that have been deleted in the remote." ,
2016-03-29 16:11:53 +00:00
"tip" : "git fetch -p" ,
2016-06-07 18:34:22 +00:00
"alternatives" : [ "git remote prune origin" ]
} , {
2016-03-29 16:11:53 +00:00
"title" : "Retrieve the commit hash of the initial revision." ,
"tip" : " git rev-list --reverse HEAD | head -1"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Visualize the version tree." ,
"tip" : "git log --pretty=oneline --graph --decorate --all" ,
2016-06-07 18:34:22 +00:00
"alternatives" : [ "gitk --all" ]
} , {
2016-03-29 16:11:53 +00:00
"title" : "Deploying git tracked subfolder to gh-pages" ,
"tip" : "git subtree push --prefix subfolder_name origin gh-pages" ,
"alternatives" : "git subtree push --prefix subfolder_name origin branch_name"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Adding a project to repo using subtree" ,
"tip" : "git subtree add --prefix=<directory_name>/<project_name> --squash git@github.com:<username>/<project_name>.git master"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Get latest changes in your repo for a linked project using subtree" ,
"tip" : "git subtree pull --prefix=<directory_name>/<project_name> --squash git@github.com:<username>/<project_name>.git master"
2016-06-07 18:34:22 +00:00
} , {
2016-06-05 18:23:49 +00:00
"title" : "Export a branch with history to a file." ,
2016-03-29 16:11:53 +00:00
"tip" : "git bundle create <file> <branch-name>"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Import from a bundle" ,
"tip" : "git clone repo.bundle <repo-dir> -b <branch-name>"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Get the name of current branch." ,
"tip" : "git rev-parse --abbrev-ref HEAD"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Ignore one file on commit (e.g. Changelog)." ,
"tip" : "git update-index --assume-unchanged Changelog; git commit -a; git update-index --no-assume-unchanged Changelog"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Stash changes before rebasing" ,
"tip" : "git rebase --autostash"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Fetch pull request by ID to a local branch" ,
"tip" : "git fetch origin pull/<id>/head:<branch-name>" ,
2016-06-07 18:34:22 +00:00
"alternatives" : [ "git pull origin pull/<id>/head:<branch-name>" ]
} , {
2016-03-29 16:11:53 +00:00
"title" : "Show the most recent tag on the current branch." ,
"tip" : "git describe --tags --abbrev=0"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Show inline word diff." ,
"tip" : "git diff --word-diff"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Don’ t consider changes for tracked file." ,
"tip" : "git update-index --assume-unchanged <file_name>"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Undo assume-unchanged." ,
"tip" : "git update-index --no-assume-unchanged <file_name>"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Clean the files from `.gitignore`." ,
"tip" : "git clean -X -f"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Restore deleted file." ,
"tip" : "git checkout <deleting_commit>^ -- <file_path>"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Restore file to a specific commit-hash" ,
"tip" : "git checkout <commit-ish> -- <file_path>"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Always rebase instead of merge on pull." ,
"tip" : "git config --global branch.autosetuprebase always"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "List all the alias and configs." ,
"tip" : "git config --list"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Make git case sensitive." ,
"tip" : "git config --global core.ignorecase false"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Auto correct typos." ,
"tip" : "git config --global help.autocorrect 1"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Check if the change was a part of a release." ,
"tip" : "git name-rev --name-only <SHA-1>"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Dry run. (any command that supports dry-run flag should do.)" ,
"tip" : "git clean -fd --dry-run"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Marks your commit as a fix of a previous commit." ,
"tip" : "git commit --fixup <SHA-1>"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "squash fixup commits normal commits." ,
"tip" : "git rebase -i --autosquash"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "skip staging area during commit." ,
"tip" : "git commit -am <commit message>"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "List ignored files." ,
"tip" : "git check-ignore *"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Status of ignored files." ,
"tip" : "git status --ignored"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Commits in Branch1 that are not in Branch2" ,
"tip" : "git log Branch1 ^Branch2"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "reuse recorded resolution, record and reuse previous conflicts resolutions." ,
2016-06-08 20:54:04 +00:00
"tip" : "git config --global rerere.enabled 1"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Open all conflicted files in an editor." ,
"tip" : "git diff --name-only | uniq | xargs $EDITOR"
2016-06-07 18:34:22 +00:00
} , {
2016-03-29 16:11:53 +00:00
"title" : "Count unpacked number of objects and their disk consumption." ,
"tip" : "git count-objects --human-readable"
2016-06-07 18:34:22 +00:00
} , {
2016-06-08 20:00:17 +00:00
"title" : "Prune all unreachable objects from the object database." ,
"tip" : "git gc --prune=now --aggressive"
} , {
"title" : "Instantly browse your working repository in gitweb." ,
"tip" : "git instaweb [--local] [--httpd=<httpd>] [--port=<port>] [--browser=<browser>]"
} , {
"title" : "View the GPG signatures in the commit log" ,
"tip" : "git log --show-signature"
2016-06-07 18:34:22 +00:00
} , {
2016-04-06 20:20:46 +00:00
"title" : "Remove entry in the global config." ,
"tip" : "git config --global --unset <entry-name>"
2016-06-08 20:00:17 +00:00
} , {
2016-04-10 15:37:36 +00:00
"title" : "Checkout a new branch without any history" ,
"tip" : "git checkout --orphan <branch_name>"
2016-06-08 20:00:17 +00:00
} , {
"title" : "Extract file from another branch." ,
"tip" : "git show <branch_name>:<file_name>"
} , {
"title" : "List only the root and merge commits." ,
"tip" : "git log --first-parent"
} , {
"title" : "Merge previous two commits into one." ,
"tip" : "git rebase --interactive HEAD~2"
} , {
"title" : "List all branch is WIP" ,
"tip" : "git checkout master && git branch --no-merged"
} , {
"title" : "Find guilty with binary search" ,
"tip" : "git bisect start # Search start \ngit bisect bad # Set point to bad commit \ngit bisect good v2.6.13-rc2 # Set point to good commit|tag \ngit bisect bad # Say current state is bad \ngit bisect good # Say current state is good \ngit bisect reset # Finish search \n"
} , {
2016-06-07 05:21:11 +00:00
"title" : "Bypass pre-commit and commit-msg githooks" ,
"tip" : "git commit --no-verify"
2016-06-08 20:54:04 +00:00
} , {
"title" : "List commits and changes to a specific file (even through renaming)" ,
"tip" : "git log --follow -p -- <file_path>"
2016-06-10 10:40:16 +00:00
} , {
"title" : "Clone a single branch" ,
"tip" : "git clone -b <branch-name> --single-branch https://github.com/user/repo.git"
2016-06-12 08:10:42 +00:00
} , {
"title" : "Create and switch new branch" ,
2016-06-13 17:30:07 +00:00
"tip" : "git checkout -b <branch-name>" ,
"alternatives" : [ "git branch <branch-name> && git checkout <branch-name>" ]
2016-06-11 17:59:23 +00:00
} , {
"title" : "Ignore file mode changes on commits" ,
"tip" : "git config core.fileMode false"
2016-06-08 20:00:17 +00:00
} ]