Vincent Scheib
Vincent Scheib

Reputation: 18650

How to configure git bash command line completion?

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.

Upvotes: 261

Views: 208515

Answers (18)

Sergey Evstifeev
Sergey Evstifeev

Reputation: 5358

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.

Upvotes: 368

Adam Scroggin
Adam Scroggin

Reputation: 124

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

source /etc/bash_complettion.d/git-prompt

Upvotes: 0

Willem Ellis
Willem Ellis

Reputation: 5016

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”

Upvotes: 1

dorian.
dorian.

Reputation: 394

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

Upvotes: 15

tom
tom

Reputation: 10601

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

Upvotes: 2

Animesh Naskar
Animesh Naskar

Reputation: 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\] '

Upvotes: -1

tbo47
tbo47

Reputation: 3339

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

source /etc/bash_completion.d/git-prompt

Upvotes: 0

drmuelr
drmuelr

Reputation: 1125

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)

Upvotes: 9

Matt Goo
Matt Goo

Reputation: 1136

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.

Upvotes: 2

Rob
Rob

Reputation: 143

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.

Upvotes: 2

FelipeC
FelipeC

Reputation: 9498

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

Upvotes: 19

wisbucky
wisbucky

Reputation: 38023

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.

Upvotes: 68

kisp
kisp

Reputation: 6552

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

Upvotes: 6

karfkars
karfkars

Reputation: 4063

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.

Upvotes: -1

andrgolubev
andrgolubev

Reputation: 885

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.

Upvotes: 1

Nicks
Nicks

Reputation: 16317

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.

Upvotes: 3

Andrzej Rehmann
Andrzej Rehmann

Reputation: 13890

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
    

Upvotes: 29

jospratik
jospratik

Reputation: 1674

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/

Upvotes: 102

Related Questions