git
Bonus Block: git
Internals
git
Repository π«Inside .git/
.
objects/
: Actual data / contentsrefs/
: Points to commits (e.g. branches
, tags
)logs/
: History for reflog
HEAD
: Points to the current HEAD e.g. a branch or commitconfig
: Repository-specific configuration settingsindex
: Staging areaDemo: Looking inside .git/
(including index/staging).
Warning
Messing with a git repository has a high chance of ruining it. Only do this with repositories that you have plenty of backups of or ones that are not important.
.git
folder of your cookbook repository.Any Questions?