Find the Best Cosmetic Hospitals

Explore trusted cosmetic hospitals and make a confident choice for your transformation.

“Invest in yourself — your confidence is always worth it.”

Explore Cosmetic Hospitals

Start your journey today — compare options in one place.

Git Tutorial: Working with git objects using “git cat-file”


Git inside: Direct work with git objects

Goals

  • Explore the structure of the database objects
  • Using SHA1 hashes for searching the content in repository

Let us examine git objects with some tools.

01. Searching for the last commit


RUN:

1git hist –max-count=1

This command should find the last commit in the repository. SHA1 hash is probably different on our systems; however you should see something like this.

RESULT:

1 2$ git hist –max-count=1 * 8029c07 2011-03-09 | Added index.html. (HEAD, master) [Alexander Shvets]

02. Display of the last commit


With SHA1 hash of a commit, as above…

RUN:

1 2git cat-file -t <hash> git cat-file -p <hash>

I see this …

RESULT:

1 2 3 4 5 6 7 8 9$ git cat-file -t 8029c07 commit $ git cat-file -p 8029c07 tree 096b74c56bfc6b40e754fc0725b8c70b2038b91e parent 567948ac55daa723807c0c16e34c76797efbcbed author Alexander Shvets <alex@githowto.com> 1299684476 -0500 committer Alexander Shvets <alex@githowto.com> 1299684476 -0500 Added index.html.

Note:
If you specify the alias as «type» and «dump», as described in the corresponding lesson, you can enter commands git type and git dump instead of a long command (which I never memorize).

This displays the commit object, which is in the head of master branch.

03. Tree search


We can display the tree referenced in the commit. This should be a file description (top level) in our project (for a specific commit). Use the SHA1 hash of the tree string from the list above.

RUN:

1git cat-file -p <treehash>

Here is my tree …

RESULT:

1 2 3$ git cat-file -p 096b74c 100644 blob 28e0e9d6ea7e25f35ec64a43f569b550e8386f90 index.html 040000 tree e46f374f5b36c6f02fb3e9e922b79044f754d795 lib

I can see the index.html file and lib folder.

04. Display lib directory


RUN:

1git cat-file -p <libhash>

RESULT:

1 2$ git cat-file -p e46f374 100644 blob c45f26b6fdc7db6ba779fc4c385d9d24fc12cf72 hello.html

There is a hello.html file.

05. Display hello.html file


RUN:

1git cat-file -p <hellohash>

RESULT:

1 2 3 4 5 6 7 8 9$ git cat-file -p c45f26b <!– Author: Alexander Shvets (alex@githowto.com) –> <html> <head> </head> <body> <h1>Hello, World!</h1> </body> </html>

And there it is. Tree objects, commit objects and blob objects are displayed directly from the git repository. That’s all there is – trees, blobs and commits.

06. Explore by yourself


The git repository can be explored manually. Try to manually find the original hello.html file from the first commit with help of SHA1 hash references in the last commit.

Find Trusted Cardiac Hospitals

Compare heart hospitals by city and services — all in one place.

Explore Hospitals
I’m a DevOps/SRE/DevSecOps/Cloud Expert passionate about sharing knowledge and experiences. I have worked at <a href="https://www.cotocus.com/">Cotocus</a>. I share tech blog at <a href="https://www.devopsschool.com/">DevOps School</a>, travel stories at <a href="https://www.holidaylandmark.com/">Holiday Landmark</a>, stock market tips at <a href="https://www.stocksmantra.in/">Stocks Mantra</a>, health and fitness guidance at <a href="https://www.mymedicplus.com/">My Medic Plus</a>, product reviews at <a href="https://www.truereviewnow.com/">TrueReviewNow</a> , and SEO strategies at <a href="https://www.wizbrand.com/">Wizbrand.</a> Do you want to learn <a href="https://www.quantumuting.com/">Quantum Computing</a>? <strong>Please find my social handles as below;</strong> <a href="https://www.rajeshkumar.xyz/">Rajesh Kumar Personal Website</a> <a href="https://www.youtube.com/TheDevOpsSchool">Rajesh Kumar at YOUTUBE</a> <a href="https://www.instagram.com/rajeshkumarin">Rajesh Kumar at INSTAGRAM</a> <a href="https://x.com/RajeshKumarIn">Rajesh Kumar at X</a> <a href="https://www.facebook.com/RajeshKumarLog">Rajesh Kumar at FACEBOOK</a> <a href="https://www.linkedin.com/in/rajeshkumarin/">Rajesh Kumar at LINKEDIN</a> <a href="https://www.wizbrand.com/rajeshkumar">Rajesh Kumar at WIZBRAND</a> <a href="https://www.rajeshkumar.xyz/dailylogs">Rajesh Kumar DailyLogs</a>

Related Posts

Top 10 AI Data Integration Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, AI data integration tools are pivotal for businesses navigating the complexities of modern data ecosystems. These tools combine artificial intelligence with data integration processes…

Read More

Top 10 Fleet Management Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, the logistics and transportation industries are evolving rapidly, and managing a fleet of vehicles has never been more complex. Fleet management software has become…

Read More

Top 10 AI Academic Plagiarism Checkers Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, AI academic plagiarism checkers have become indispensable tools for students, educators, researchers, and institutions striving to uphold academic integrity. With the rise of AI-generated…

Read More

Top 10 Travel Management Software Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, travel management software (TMS) has become a crucial tool for businesses, travel agencies, and frequent travelers. These tools automate the booking, tracking, and management…

Read More

Top 10 No-Code Platforms Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, no-code platforms have become essential for businesses and individuals looking to build powerful applications, websites, and automations without the need for programming knowledge. These…

Read More

Top 10 AI Training Data Platforms Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, AI training data platforms have become the backbone of successful machine learning (ML) and artificial intelligence (AI) projects. These platforms streamline the process of…

Read More
Subscribe
Notify of
guest
0 Comments
Newest
Oldest Most Voted
0
Would love your thoughts, please comment.x
()
x