# HG changeset patch # User Augie Fackler # Date 1290990626 21600 # Node ID 0cd241f35c40d36854162e72fc2792d585c5fc8b # Parent da06f9fd5016561a8127c67cf88cbe93cf97406f git-functions: add a couple of handy aliases diff --git a/.shell.d/50.git_functions.sh b/.shell.d/50.git_functions.sh --- a/.shell.d/50.git_functions.sh +++ b/.shell.d/50.git_functions.sh @@ -16,6 +16,7 @@ function git_repack_all() { popd done } +alias git-repack-all=git_repack_all function git_fsck_all() { for repo in $(find . | \ @@ -27,3 +28,4 @@ function git_fsck_all() { popd done } +alias git-fsck-all=git_fsck_all