File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,15 @@ Start:
1313
1414## Explore
1515
16+ You will need to setup your git email and user-name
17+ (replace with yours in case you want to commit something, otherwise use copy-paste)
18+
19+ ``` bash
20+ git config --global user.email
" [email protected] " 21+ git config --global user.name " Your Name"
22+ ```
23+ > could be added to local config
24+
1625- create a folder with an empty repository
1726- setup user.name and user.email
1827- create branches
@@ -31,6 +40,10 @@ Start:
3140git log --format=raw
3241git cat-file -p < hash> # pretty print
3342git cat-file -t < hash> # type
43+
44+ # the binary object can also be inspected using different tools,
45+ # which might make it easier to navigate to certain blobs:
46+ cat .git/objects/< 2c> /< 38c> | zlib-flate -uncompress
3447```
3548
3649## Note
You can’t perform that action at this time.
0 commit comments