diff --git a/shell/alias/git.sh b/shell/alias/git.sh index 00bc731..a95c7f5 100644 --- a/shell/alias/git.sh +++ b/shell/alias/git.sh @@ -443,17 +443,19 @@ grsh() { } # current state of repository -alias gs="\ -git \ -status \ ---untracked-files=all \ -" +gs() { + git \ + status \ + --untracked-files="all" \ + "${@}" +} # show a commit -alias gsc="\ -git \ -show \ -" +gsc() { + git \ + show \ + "${@}" +} # tag a commit gt() {