Created
July 22, 2025 15:56
-
-
Save bugant/733ee7fbbcf557196c57dacddc4861bf to your computer and use it in GitHub Desktop.
git alias to g with autocompletion (works on Fedora)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias g="git" | |
| if [ -f /usr/share/bash-completion/completions/git ]; then | |
| . /usr/share/bash-completion/completions/git | |
| __git_complete g __git_main | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment