Skip to content

Instantly share code, notes, and snippets.

@abscondment
Created March 31, 2014 19:43
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 abscondment/9900578 to your computer and use it in GitHub Desktop.
Save abscondment/9900578 to your computer and use it in GitHub Desktop.
brendan@stubb:~/code/paperkarma/server$ git fsck | wc -l
Checking object directories: 100% (256/256), done.
Checking objects: 100% (43480/43480), done.
82
brendan@stubb:~/code/paperkarma/server$ git fsck --no-reflogs | wc -l
Checking object directories: 100% (256/256), done.
Checking objects: 100% (43480/43480), done.
85
brendan@stubb:~/code/paperkarma/server$ git gc
Counting objects: 48050, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (16268/16268), done.
Writing objects: 100% (48050/48050), done.
Total 48050 (delta 33924), reused 43032 (delta 31068)
brendan@stubb:~/code/paperkarma/server$ git fsck | wc -l
Checking object directories: 100% (256/256), done.
Checking objects: 100% (48050/48050), done.
0
brendan@stubb:~/code/paperkarma/server$ git fsck --no-reflogs | wc -l
Checking object directories: 100% (256/256), done.
Checking objects: 100% (48050/48050), done.
0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment