Which command shows a compact one-line history with branch graph?git loggit log —oneline —graph —decorategit show —graphHow do you see the changes introduced by the current HEAD commit?git diff HEAD^..HEAD —name-statusgit show HEADgit status —showWhich command compares staged changes to the last commit?git diffgit diff —stagedgit diff —HEADHow do you limit the log to the last 5 commits?git log —max=5git log -n 5git show -n 5Which option helps find commits that added or removed a specific string?—grep-S-USubmit Print Lesson