diff .shell.d/50.git_functions.sh @ 234:0cd241f35c40

git-functions: add a couple of handy aliases
author Augie Fackler <durin42@gmail.com>
date Sun, 28 Nov 2010 18:30:26 -0600
parents 0590f34b92a0
children
line wrap: on
line diff
--- 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