33

If I do this:

alias g='git'

I loose all completion rules (i.e. branches and remotes are no longer being automatically completed when I hit TAB after typing, for example g push o).

Paweł Gościcki
  • 1,402
  • 3
  • 20
  • 23
  • While I don't have an answer for you, I'm going to have to take a minute and wonder if not typing those two other letters is really giving you much of an advantage? – Marco Ceppi Sep 19 '11 at 13:17
  • 4
    Sure it does! I'm typing 'g' probably over a 100 times a day. – Paweł Gościcki Sep 19 '11 at 13:29
  • 3
    Aliasing often-used short commands to even shorter aliases saves me hundreds of keypresses a day. According to my shell history, I have used the alias `g=git` 756 times in the past month, meaning I saved pressing the 'g' and 'i' keys 1512 times total. That, combined with my git aliases, probably saves me tens of thousands of key presses a month. –  Dec 12 '12 at 01:56
  • The main point of shortening keystrokes is helping your hands keep up with your brain. – Tyler Collier Feb 26 '15 at 23:37
  • The script at http://superuser.com/questions/436314/how-can-i-get-bash-to-perform-tab-completion-for-my-aliases worked so well I think it deserves a mention. – brandizzi May 26 '16 at 14:50

8 Answers8

34

Latest bash-completion upstream moved and renamed things a bit. It's now:

source /usr/share/bash-completion/completions/git
__git_complete g __git_main

Use this in recent versions of Ubuntu (e.g. 14.04, also Fedora 22+) when you encounter:

completion: function `_git' not found

during completing.

wjandrea
  • 14,109
  • 4
  • 48
  • 98
lzap
  • 688
  • 7
  • 8
21

Copying and modifying opportunely from /etc/bash_completion.d/git, add the following lines to your ~/.bashrc:

complete -o bashdefault -o default -o nospace -F _git g 2>/dev/null \
    || complete -o default -o nospace -F _git g
enzotib
  • 92,255
  • 11
  • 164
  • 178
  • Ha! Wunderbar! Works just like it should :) – Paweł Gościcki Sep 19 '11 at 13:32
  • 1
    I also had to add `source /usr/share/bash-completion/completions/git` to my .bashrc – pcx Aug 21 '14 at 06:46
  • Not sure if the `.bashrc` code here works, but this answer is definitely out of date. `/etc/bash_completion.d/git` doesn't seem to exist on 14.04. See [lzap's answer](http://askubuntu.com/a/642778/219582) below. – Max Wallace Nov 06 '15 at 18:04
9

In ~/.bashrc:

alias g='git'
source /usr/share/bash-completion/completions/git
complete -o default -o nospace -F _git g

Via http://29a.ch/2013/8/9/fixing-bash-autocomplete-on-ubuntu-13-04

hnasarat
  • 1,716
  • 14
  • 15
  • I upvoted this in 2015, but it no longer works for me on Ubuntu 22.04 with git 2.34.1. I still like `alias g='git'`, but I use [Izap's answer to this question](https://askubuntu.com/a/642778/25773) for the bash completion. – Tyler Collier Nov 14 '22 at 20:54
4

First, look up the original completion command. Example:

$ complete | grep git

complete -o bashdefault -o default -o nospace -F __git_wrap__git_main git

Now add these to your startup script (e.g. ~/.bashrc):

# copy the original statement, but replace the last command (git) with your alias (g)
complete -o bashdefault -o default -o nospace -F __git_wrap__git_main g

# load dynamically loaded completion functions (may not be required)
_completion_loader git

The _completion_loader line may not be required. But for some situations, the completion function is only loaded dynamically after you type the command and press TAB the first time. So if you haven't used the original command, and try the alias + TAB, you may get an error like "bash: completion: function not found".

wisbucky
  • 2,462
  • 27
  • 17
  • Works great. For me this is the correct answer, the grep command on complete is handy. Did not need the completion loader. – Paul Carlton Apr 25 '19 at 00:19
1

The updated way to do this (complete wouldn't work for me):

  1. cd - switch to your home directory
  2. wget https://raw.github.com/git/git/master/contrib/completion/git-completion.bash
  3. Add source ~/git-completion.bash to your .bashrc file (if you don't have this file make one in your home folder, bash will look for it automatically)
  4. Add alias g='git'to your .bashrc file.
  5. Start a new session or source your changes with source ~/.bashrc
Elijah Lynn
  • 3,738
  • 3
  • 27
  • 40
  • 3
    You skipped the part where they actually added completion in the comment you linked to: `__git_complete g _git` – pjvandehaar Nov 03 '15 at 06:08
0

Just for the sake of completeness, I'd like to add an answer using the ~/.bash-completion file, which gets sourced at the end of the bash-completion script:

_xfunc git __git_complete g __git_main
_xfunc git __git_complete gl _git_log
_xfunc git __git_complete gd _git_diff
_xfunc git __git_complete gb _git_branch

Then in my ~/.bashrc I have just the aliases. I was trying to:

  • avoid poluting my ~/.bashrc with bash-completion stuff (keep stuff where it belongs) ✓
  • avoid sourcing the whole git-completion into my shell ☹

Unforutnately the _xfunc sources the git-completion anyway. I'll update this answer once I figure out how to do it properly (I also asked on lunchpad here).

kub1x
  • 101
  • 2
-1

Look at here: https://gist.github.com/scue/576310b7c6b7714aad05

wget https://gist.github.com/scue/576310b7c6b7714aad05/raw/459d46761c231f5c373c1cf496920b01bb6669d2/.bash_aliases.git -O ~/.bash_aliases.git
echo "test -e ~/.bash_aliases.git && source ~/.bash_aliases.git" >> ~/.bashrc

Enjoy!(^o^)/

scue
  • 37
  • 3
  • 1
    Sorry, but that's something completely different. Making such simple alias es for whole commands is trivial. – Paweł Gościcki May 15 '15 at 08:42
  • I just make them work like git plugin of Oh-My-Zsh: https://github.com/robbyrussell/oh-my-zsh/blob/master/plugins/git/git.plugin.zsh – scue May 27 '15 at 14:26
-1

You may just define aliases as usual:

alias g='git'

Then install complete-alias to make bash completion alias-aware.

Cyker
  • 333
  • 1
  • 3
  • 9