Complete the command to show who last changed each line in a file named README.md.
git [1] README.mdThe git blame command shows line-by-line history of changes in a file.
Complete the command to show blame info for line 10 only in file app.py.
git blame -L [1],[2] app.py
The -L option limits blame output to specific lines. To show only line 10, use -L 10,10.
Fix the error in the command to show blame for file main.c in porcelain format.
git blame --[1] main.cThe correct option to show blame in porcelain format is --porcelain.
Fill both blanks to limit blame output to lines 5 to 15 and ignore whitespace changes.
git blame -L [1],[2] --[3] file.txt
Use -L 5,15 to limit lines and --ignore-whitespace to ignore whitespace changes.
Fill all three blanks to show blame for file server.js, limit to lines 20-30, in porcelain format with abbreviated commit hashes.
git blame [1] [2] [3] server.js
-L 20,30 limits lines, --porcelain shows detailed info, and --abbrev shortens commit hashes.