Exercise 1: Finding Official PDF Cheat Sheets on Git Rebasing — Possible Solution ==================================================================== THE QUERY ------------------------------ intitle:git rebase cheatsheet filetype:pdf WHY filetype:pdf IS NECESSARY ------------------------------ Per this chapter, filetype: restricts results to one specific file format. Cheat sheets in particular are very commonly published as PDFs rather than ordinary web pages, so filetype:pdf filters out the much larger volume of blog posts and tutorial pages that would otherwise dominate a plain keyword search, leaving mostly downloadable reference documents. WHY intitle:git IS USED RATHER THAN A PLAIN KEYWORD ------------------------------ Per this chapter's own decorators example, intitle: requires a term to appear specifically in the page's title rather than merely somewhere in the body - a stronger signal that the document is actually about that topic rather than mentioning it in passing. Requiring "git" in the title favors documents specifically dedicated to Git over broader version-control material that only briefly touches on it. WHY "rebase" AND "cheatsheet" ARE LEFT AS PLAIN KEYWORDS ------------------------------ Both words still need to appear somewhere on the page (per the implicit-AND default from Chapter 2), but forcing every single word into the title via allintitle: would be too blunt - a genuinely excellent "Git Rebase Cheat Sheet" PDF might use different exact phrasing in its own title (e.g. "Git Rebasing Quick Reference"), and an overly strict allintitle: could exclude it. Using intitle: only on the single most important word (git) balances precision against being overly restrictive. WHY THIS WORKS AS AN ANSWER ------------------------------ It justifies each operator independently against what it specifically accomplishes, correctly distinguishes the single-term intitle: from the blunter allintitle: variant this chapter also covered, and reuses this chapter's own stated reasoning for why filetype:pdf is particularly effective for reference-style documents.