This file contains 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
| rm -rf /tmp/x | |
| :) 02:59:53 [erich@ip-10-171-85-229 src]$ mkdir -vp /tmp/x | |
| mkdir: created directory `/tmp/x' | |
| :) 02:59:55 [erich@ip-10-171-85-229 src]$ cd /tmp/x | |
| :) 02:59:56 [erich@ip-10-171-85-229 x]$ git init | |
| Initialized empty Git repository in /tmp/x/.git/ | |
| :) 02:59:58 [erich@ip-10-171-85-229 x] (master #)$ touch it | |
| :) 03:00:01 [erich@ip-10-171-85-229 x] (master #)$ git add . | |
| :) 03:00:02 [erich@ip-10-171-85-229 x] (master #)$ git commit -am yow | |
| [master (root-commit) e635e06] yow | |
| 0 files changed | |
| create mode 100644 it | |
| :) 03:00:05 [erich@ip-10-171-85-229 x] (master)$ git fsck --full | |
| Checking object directories: 100% (256/256), done. | |
| :) 03:00:10 [erich@ip-10-171-85-229 x] (master)$ echo yow > it | |
| :) 03:00:16 [erich@ip-10-171-85-229 x] (master *)$ git add it | |
| :) 03:00:17 [erich@ip-10-171-85-229 x] (master +)$ git fsck --full | |
| Checking object directories: 100% (256/256), done. | |
| :) 03:00:20 [erich@ip-10-171-85-229 x] (master +)$ echo hoo >> it | |
| :) 03:00:24 [erich@ip-10-171-85-229 x] (master *+)$ git add it | |
| :) 03:00:26 [erich@ip-10-171-85-229 x] (master +)$ echo hoo >> it | |
| :) 03:00:27 [erich@ip-10-171-85-229 x] (master *+)$ git fsck --full | |
| Checking object directories: 100% (256/256), done. | |
| dangling blob b87c168876b7c9b80a320dcbebb6aa41cd1aa954 | |
| :) 03:00:29 [erich@ip-10-171-85-229 x] (master *+)$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment