dotfiles

config files for my linux setup
git clone git://edryd.org/dotfiles
Log | Files | Refs | README

g (212B)


      1 #!/usr/bin/env bash
      2 
      3 # g: tiny git wrapper
      4 #
      5 # To enable tab completion append `__git_complete g __git_main` to
      6 # /usr/share/bash-completion/completions/git
      7 
      8 if [[ $# -eq 0 ]]; then
      9 	git status
     10 else
     11 	git "$@"
     12 fi