272

E.g. on a fresh ubuntu machine, I've just run sudo apt-get git, and there's no completion when typing e.g. git check[tab].

I didn't find anything on http://git-scm.com/docs, but IIRC completion is included in the git package these days and I just need the right entry in my bashrc.

3
  • Works for me out of the box on Ubuntu Precise (and Fedora 17). Commented Sep 13, 2012 at 3:29
  • 2
    To check whether you have it by default or not, you can run (cd ~ && exec cat .bashrc | grep completion). Commented Dec 9, 2018 at 8:23
  • 5
    Surely you could check if it's active by running grep completion ~/.bashrc would do the job without the exec and useless use of cat? Commented May 27, 2022 at 6:47

18 Answers 18

379

On Linux

On most distributions, git completion script is installed into /etc/bash_completion.d/ (or /usr/share/bash-completion/completions/git) when you install git, no need to go to github. You just need to use it - add this line to your .bashrc:

source /etc/bash_completion.d/git
# or
source /usr/share/bash-completion/completions/git

In some versions of Ubuntu, git autocomplete may be broken by default, reinstalling by running this command should fix it:

sudo apt-get install git-core bash-completion

On Mac

You can install git completion using Homebrew or MacPorts.

Homebrew

if $BASH_VERSION > 4: brew install bash-completion@2 (updated version) Pay special care which version of bash you have as MacOS default ships with 3.2.57(1)-release.

After installing, brew will tell you what line to add to your ~/.bash_profile, for example:

Add the following line to your ~/.bash_profile:
  [[ -r "/opt/homebrew/etc/profile.d/bash_completion.sh" ]] && . "/opt/homebrew/etc/profile.d/bash_completion.sh"

Depending on how git was installed in your system, this may be what needs to be added to your ~/.bash_profile:

  [[ -r "/usr/local/etc/profile.d/bash_completion.sh" ]] && . "/usr/local/etc/profile.d/bash_completion.sh"

For older versions of bash: brew install bash-completion

Add to ~/.bash_profile:

[ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion

MacPorts

sudo port install git +bash_completion

then add this to your ~/.bash_profile:

if [ -f /usr/share/bash-completion/bash_completion ]; then
    . /usr/share/bash-completion/bash_completion
fi

more info in this guide: Install Bash git completion

Note that in all cases you need to create a new shell (open a new terminal tab/window) for changes to take effect, or you can manually source your .bash_profile.

Sign up to request clarification or add additional context in comments.

15 Comments

Most *nix boxes (especially Ubuntu) already have that file, so just sourcing it to my user fixed my problem. Thanks.
ubuntu may have it as /etc/bash_completion.d/git-prompt
In my Ubuntu 14.04 this file is /usr/share/bash-completion/completions/git . /etc/bash_completion.d/git-prompt is used for git prompt support, not for completion.
WARNING: The Mac homebrew method only works if you have git installed through homebrew do brew uninstall bash-completion then brew install git if you had git installed through some other method before, then the above steps will work.
to check bash version 👉 echo $BASH_VERSION
|
103

i had same issue, followed below steps:

curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash

then add the following lines to your .bash_profile (generally under your home folder)

if [ -f ~/.git-completion.bash ]; then
  . ~/.git-completion.bash
fi

source : http://code-worrier.com/blog/autocomplete-git/

4 Comments

I was behind a proxy so I had to set the proxy first for the curl to work export https_proxy=proxy_ip:proxy_port I don't really get why it does not get the settings from the system.
it's not really needed to hide that file by a dot in front of its name. Also: careful with git versions (see the answer of wisbucky)
On Linux after following the instructions above I needed to exit the terminal and open again to see the results. Also, I changed the git version in curl Url.
68

Most of the instructions you see will tell you to download

https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash

and source that in your bash startup script like .bashrc.

But there is a problem with that, because it is referencing the master branch, which is the latest version of git-completion.bash. The problem is that sometimes it will break because it is not compatible with the version of git you've installed.

In fact, right now that will break because the master branch's git-completion.bash has new features that requires git v2.18, which none of the package managers and installers have updated to yet. You'll get an error unknown option: --list-cmds=list-mainporcelain,others,nohelpers,alias,list-complete,config

So the safest solution is to reference the version/tag that matches the git you've installed. For example:

https://raw.githubusercontent.com/git/git/v2.17.1/contrib/completion/git-completion.bash

Note that it has a v2.17. in the URL instead of master. And then, of course, make sure to source that in the bash startup script.

2 Comments

The macos version-specific file should already be on disk here: /Library/Developer/CommandLineTools/usr/share/git-core/git-completion.bash Just to be safe I diffed it with the 2.17.1 version on github and it matches.
On Linux after following the instructions above I needed to exit the terminal and open again to see the results.
29

Ubuntu 14.10

Install git-core and bash-completion

sudo apt-get install -y git-core bash-completion
  • For current session usage

    source /usr/share/bash-completion/completions/git
    
  • To have it always on for all sessions

    echo "source /usr/share/bash-completion/completions/git" >> ~/.bashrc
    

Comments

19

Just do this in your ~/.bashrc:

source /usr/share/bash-completion/completions/git

Other answers are telling you to install bash-completion, you don't need to do that, but if you do, then there's no need to source the completion directly. You do one or the other, not both.

A more generic solution is querying the system location as recommended by the bash-completion project:

source "$(pkg-config --variable=completionsdir bash-completion)"/git

2 Comments

The generic solution works great on Void Linux, though I did have to install bash-completion first.
bash-completion should do that automatically. It's needed if you have the git bash-completion, but not bash-completion.
16

It seems many are coming here to figure out how to enable tab completion on their OS. It's important to note from the beginning that git tab completion is shell-dependent, not OS-dependent. These days, most shells work across a variety of Unix-based operating systems, like bash, zsh, or fish. A select few work across all major OS's, like Powershell.

If you're not sure which Unix shell you're using, try echo $SHELL or see this question.

Bash (most Linux distros)

On most Unix distributions, git tab completion is meant to work out of the box, installed to /etc/bash_completion.d/ or /usr/share/bash-completion/completions/git. You're likely here because it isn't working, which may be because the completion script isn't getting used. Try adding this line to your .bashrc:

source /etc/bash_completion.d/git
# or
source /usr/share/bash-completion/completions/git

Then try tab completion again in a new terminal.

If git autocomplete is broken or not installed, reinstalling by running this command should fix it:

sudo apt-get install git-core bash-completion

Once again, try tab completion again in a new terminal.

For more details, see the git book Appendix A: Git in Other Environments - Git in Bash

Installing git tab completion on macOS for bash users

If you use the bash shell in macOS, you can install git completion using Homebrew or MacPorts. See @sergey-evstifeev's answer for how to do this.

Zsh (macOS, some Linux distros)

MacOS and several Linux distros use Zsh as the default terminal shell. To enable git tab completion in Zsh, add to your .zshrc:

autoload -Uz compinit && compinit

Then try tab completion again in a new terminal.

Optional: Consider also adding the Oh My Zsh plugin for themes with git info.

For more details, see the git book Appendix A: Git in Other Environments - Git in Zsh

Powershell (Windows)

Tab completion on Windows can be added to Powershell with posh-git. (Note that this is not supported in Command Prompt).

To install posh-git in Powershell,

script execution policy must be set to either RemoteSigned or Unrestricted. Check the script execution policy setting by executing Get-ExecutionPolicy. If the policy is not set to one of the two required values, run PowerShell as Administrator and execute Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Confirm.

Then install with PowerShellGet:

PowerShellGet\Install-Module posh-git -Scope CurrentUser -Force

Then try tab completion again in a new terminal.

For Chocolatey, Scoop, or manual installation instructions, see the posh-git GitHub page.

Optional: Also consider upgrading to Powershell 7, which has command-line IntelliSense for intelligent tab completion.

For more details, see the git book Appendix A: Git in Other Environments - Git in Powershell

Comments

9

macOS via Xcode Developer Tools

Of all the answers currently posted for macOS, this is only mentioned in a very brief comment by jmt...

If you already have the Xcode developer tools installed, then you shouldn't need to download anything new.

Instead, you just need to locate the already-existing git-completion.bash file and source it in your .bashrc. Check the following directories:

  • /Applications/Xcode.app/Contents/Developer/usr/share/git-core
  • /Library/Developer/CommandLineTools/usr/share/git-core

Failing that, git itself might be able to help you out. When I run git config as follows, git reports a setting which comes from a gitconfig file located in the same directory as my git-completion.bash:

$ git config --show-origin --list
...
file:/Applications/Xcode.app/Contents/Developer/usr/share/git-core/gitconfig    credential.helper=osxkeychain
...

or you can always brute-force search your machine and grab some coffee:

$ find / -type f -name git-completion.bash 2>/dev/null

Thus, I have the following insertion for my ~/.bashrc:

# Git shell completion and prompt string on macOS
_git_dir="/Applications/Xcode.app/Contents/Developer/usr/share/git-core"
if [ -f "${_git_dir}/git-completion.bash" ]; then
    source "${_git_dir}/git-completion.bash"
fi
if [ -f "${_git_dir}/git-prompt.sh" ]; then
    source "${_git_dir}/git-prompt.sh"
fi
unset _git_dir

Note that this sources the git prompt-string script as well, since it resides in the same directory.

(Tested in macOS Catalina)

1 Comment

This also worked when I installed git for windows and then MSYS2 and I wanted to use git under MSYS2. Did find / -type f -name git-completion.bash 2>/dev/null in git bash to determine where the file was, then sourced it. I then grepped the entire completion directory for where the __git_ps1() function was and was able to source that in too. This allowed me to have the prompt by copying the $PS1 environment variable over from git bash to MSYS2 bash.
6

on my ubuntu there is a file installed here:

source /etc/bash_completion.d/git-prompt

you can follow the links into the /usr/lib/git-core folder. You can find there an instruction, how to set up PS1 or use __git_ps1

Comments

3

May be helpful for someone:--

After downloading the .git-completion.bash from the following link,

curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash

and trying to use __git_ps1 function, I was getting error as--

 -bash: __git_ps1: command not found

Apparently we need to download scripts separately from master to make this command work, as __git_ps1 is defined in git-prompt.sh . So similar to downloading .git-completion.bash , get the git-prompt.sh:

curl -L https://raw.github.com/git/git/master/contrib/completion/git-prompt.sh > ~/.bash_git

and then add the following in your .bash_profile

source ~/.bash_git
if [ -f ~/.git-completion.bash ]; then
  . ~/.git-completion.bash
export PS1='\W$(__git_ps1 "[%s]")>'
fi

source ~/.bash.git will execute the downloaded file and

export PS1='\W$(__git_ps1 "[%s]") command will append the checkout out branch name after the current working directory(if its a git repository).

So it will look like:-

dir_Name[branch_name] where dir_Name is the working directory name and branch_name will be the name of the branch you are currently working on.

Please note -- __git_ps1 is case sensitive.

Comments

2

Arch Linux

Source /usr/share/git/completion/git-completion.bash in one of the bash startup files.

For example:

# ~/.bashrc

source /usr/share/git/completion/git-completion.bash

You may be able to find the script in other locations like /usr/share/bash-completion/completions/git but these scripts did not work for me.

Comments

2

Mac M1

For those that are using Mac M1 environment, I was able to install via homebrew:

brew install bash-completion

Then added to my ~/.bash_profile or ~/.bashrc (whatever you use):

[[ -r "/opt/homebrew/Cellar/bash-completion/1.3_3/etc/profile.d/bash_completion.sh" ]] && . "/opt/homebrew/Cellar/bash-completion/1.3_3/etc/profile.d/bash_completion.sh"

You may need to update the version number (1.3_3). You'll just need to look it up in that directory. I would love to know if there's a better way.

1 Comment

It should be [[ -r "/opt/homebrew/etc/profile.d/bash_completion.sh" ]] && . "/opt/homebrew/etc/profile.d/bash_completion.sh" - the installer suggests this.
2

Windows

How it finally works for me on Windows 11 in the command prompt (CMD):

  • install Clink (Bash features for Windows)
  • copy git-autocomplete.lua file into C:\Users\<username>\AppData\local\clink directory

2 Comments

The linked clink is not maintained anymore. The maintained fork is available at <chrisant996.github.io/clink>. PR updating the links in the repository of the completion script submitted: github.com/ztomm/git-autocomplete-for-windows/pull/1
@koppor thanks. I have updated the link. Apparently, Windows no longer needs to be restarted with the new version.
1

Ubuntu

There is a beautiful answer here. Worked for me on Ubuntu 16.04

Windows

Git Bash is the tool to allow auto-completion. Not sure if this is a part of standard distribution so you can find this link also useful. By the way, Git Bash allows to use Linux shell commands to work on windows, which is a great thing for people, who have experience in GNU/Linux environment.

Comments

1

The Mac section of the accepted answer is outdated. The updated instructions can be found here. After installing, you need to add the following to your .bash_profile

[[ -r "$HOMEBREW_PREFIX/etc/profile.d/bash_completion.sh" ]] && . "$HOMEBREW_PREFIX/etc/profile.d/bash_completion.sh”

Comments

0

On Ubuntu 22.04 just add this line at the end of .bashrc or .zshrc

source /etc/bash_completion.d/git-prompt

1 Comment

how does this help the author, since the author asks about autocompletion?
0

On Ubuntu 24.04, the script is located at /etc/bash_complettion.d

source /etc/bash_complettion.d/git-prompt

Comments

-1

On Github in the Git project, They provide a bash file to autocomplete git commands.

You should download it to home directory and you should force bash to run it. It is simply two steps and perfectly explained(step by step) in the following blog post.

code-worrier blog: autocomplete-git/

I have tested it on mac, it should work on other systems too. You can apply same approach to other operating systems.

Comments

-1

Just put below in the .bashrc and relaunch the terminal. Navigate to Git repo to see the path in the prompt.

PS1='\[\033[0;32m\]\[\033[0m\033[0;32m\]\u\[\033[0;36m\] @ \[\033[0;36m\]\h \w\[\033[0;32m\]$(__git_ps1)\n\[\033[0;32m\]└─\[\033[0m\033[0;32m\] \$\[\033[0m\033[0;32m\] ▶\[\033[0m\] '

1 Comment

The question is about command completion with tab, not about a shell prompt.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.