Forking keeps the full gist history and links your new gist back to the original, so A is the better fit here. B works for a one-off copy but you lose any tracking or attribution. Pretty sure Microsoft wants A based on how GitHub actually handles public gists. Anyone see an edge case for B?
D makes sense. You can't create a pull request if both branches are the same, there'd be no diff to review or merge. Pull requests are all about comparing changes across different branches. Pretty sure this is how GitHub and Azure DevOps handle it, but happy to hear if someone knows an exception.
Gotta be D. Pull requests only make sense if you're comparing two branches with different commit histories, otherwise there’s nothing to review or merge. Doesn’t matter who authored them, just has to be different branches. If I’m off let me know, but pretty confident on this one.
<!- This is a comment -> is the actual hidden comment syntax for GitHub Markdown. Tricky if you misread, but pretty sure that’s what they want.C or B for me. B talks about blocking secrets, which is a security concern too-if the question meant best way to prevent leaks, I'd pick B. But does it say "primary" as in first thing you should do or just the main purpose? That would help decide.
Pretty straightforward, it's C. Security policy's main role is to tell people how to responsibly report vulnerabilities, not about reviews or secrets management. Official guide and exam practice questions both push that angle. I think C is right but let me know if you read it differently.
Maybe C, . Customizing notifications (D) just tweaks what you already get, but to actually receive all ongoing updates about a repo's activity you need to subscribe, which is C. D's a bit of a distraction here.
Yeah, that's A. GitHub Marketplace is where you actually discover and install tools or integrations-not just browse repos like you can in Explore (D). Pretty common setup on their exams. If you need to do more than just look, option A is the one. Correct me if I'm off here.
Isn’t the big difference here that A (Marketplace) is for extensions and installable integrations, while D (Explore) just helps you find repos and code examples? Pretty sure Marketplace is the only spot with that install option. Anyone notice any recent UI changes messing with this?
Pretty sure D is right here, not A. CODEOWNERS doesn't stop someone from editing files, it just makes sure the listed owners get assigned as PR reviewers. The term "owner" can be confusing, but it's about who reviews changes, not access control. Seen this trip people on practice tests before.