diff --git a/shell/alias/git.sh b/shell/alias/git.sh index eaa83a6..628799a 100644 --- a/shell/alias/git.sh +++ b/shell/alias/git.sh @@ -241,7 +241,7 @@ git_fetch() { # fetch from remote repository and prune local orphan branches gfp() { git_fetch_prune "${@}"; } git_fetch_prune() { - gf \ + git_fetch \ --prune \ "${@}" } @@ -300,7 +300,7 @@ C %C(blue)%ci # log all history gla() { git_log_all "${@}"; } git_log_all() { - gl \ + git_log \ --all \ "${@}" } @@ -308,7 +308,7 @@ git_log_all() { # log all history with patches glap() { git_log_all_patch "${@}"; } git_log_all_patch() { - gl \ + git_log \ --all \ --patch \ "${@}" @@ -317,7 +317,7 @@ git_log_all_patch() { # log history with patches glp() { git_log_patch "${@}"; } git_log_patch() { - gl \ + git_log \ --patch \ "${@}" } @@ -389,7 +389,7 @@ git_push_delete() { # force the push to the remote repository gpf() { git_push_force "${@}"; } git_push_force() { - gp \ + git_push \ --force \ "${@}" }