Created
March 31, 2014 19:43
-
-
Save abscondment/9900578 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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