Skip to content

Instantly share code, notes, and snippets.

@bobthecow
Created October 6, 2010 15:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bobthecow/06c5b660da4a2cdeba09 to your computer and use it in GitHub Desktop.
Save bobthecow/06c5b660da4a2cdeba09 to your computer and use it in GitHub Desktop.
justin@dan:~/projects/www[develop *$]$ time for i in {1..10}; do git flow release list > /dev/null; done
real 0m1.605s
user 0m0.728s
sys 0m0.860s
justin@dan:~/projects/www[develop *$]$ time for i in {1..10}; do __git_flow_list_releases_faster > /dev/null; done
real 0m0.081s
user 0m0.036s
sys 0m0.094s
justin@dan:~/projects/www[develop *$]$ time for i in {1..100}; do git flow release list > /dev/null; done
real 0m16.061s
user 0m7.271s
sys 0m8.625s
justin@dan:~/projects/www[develop *$]$ time for i in {1..100}; do __git_flow_list_releases_faster > /dev/null; done
real 0m0.767s
user 0m0.343s
sys 0m0.883s
justin@dan:~/projects/www[develop *$]$ time for i in {1..10}; do git flow feature list > /dev/null; done
real 0m1.855s
user 0m0.719s
sys 0m1.051s
justin@dan:~/projects/www[develop *$]$ time for i in {1..10}; do __git_flow_list_features_faster > /dev/null; done
real 0m0.080s
user 0m0.036s
sys 0m0.094s
justin@dan:~/projects/www[develop *$]$ time for i in {1..100}; do git flow feature list > /dev/null; done
real 0m18.374s
user 0m7.177s
sys 0m10.429s
justin@dan:~/projects/www[develop *$]$ time for i in {1..100}; do __git_flow_list_features_faster > /dev/null; done
real 0m0.784s
user 0m0.360s
sys 0m0.925s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment