Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Git for Programmers

You're reading from   Git for Programmers Master Git for effective implementation of version control for your programming projects

Arrow left icon
Product type Paperback
Published in Jun 2021
Publisher Packt
ISBN-13 9781801075732
Length 264 pages
Edition 1st Edition
Tools
Arrow right icon
Author (1):
Arrow left icon
Jesse Liberty Jesse Liberty
Author Profile Icon Jesse Liberty
Jesse Liberty
Arrow right icon
View More author details
Toc

Table of Contents (16) Chapters Close

Preface 1. Introduction 2. Creating Your Repository FREE CHAPTER 3. Branching, Places, and GUIs 4. Merging, Pull Requests, and Handling Merge Conflicts 5. Rebasing, Amend, and Cherry-Picking 6. Interactive Rebasing 7. Workflow, Notes, and Tags 8. Aliases 9. Using the Log 10. Important Git Commands and Metadata 11. Finding a Broken Commit: Bisect and Blame 12. Fixing Mistakes 13. Next Steps
14. Other Books You May Enjoy
15. Index

Metadata

Every commit, merge, and so on, is accompanied by metadata. You can get at a lot of the metadata by using the log, but sometimes you just want to extract a few pieces of important metadata. For that you can use the show command:

Figure 10.18: Using show to see metadata

In this example, we use show to find the name and email of the author, along with the ID and the metadata telling us where the tip of main is. Let's break it down:

  • git show—the show command.
  • -s—silent (or quiet), which suppresses the difference output (try the command without it to see).
  • HEAD tells show which commit you are interested in.
  • %an is the author's name.
  • %ae is the author's email address.

We put this code into a string and assign it to the format flag.

Let's look at the log and see what else we can do with showing metadata:

Figure 10.19: Looking at the log

Let's zero in on the metadata...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime