commit fbd11d300e5e7a243f4e324818da7569b0111891 parent 4c4b22b8ed3699cb8242d986d08390cdb5ebf45d Author: Ed van Bruggen <edvb54@gmail.com> Date: Tue, 28 Oct 2014 18:04:54 -0700 Bin: Add g script for using git quickly Diffstat:
bin/g | | | 8 | ++++++++ |
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/bin/g b/bin/g @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +if [[ $# -eq 0 ]]; then + git status +else + git "$@" +fi +