I want to find out in which commit did I add the code given below:
if (getListView().getChildCount() == 0) getActivity().findViewById(androi
There is something quicker than issuing a blame on the full file. If the line is ${lineno} and the file is ${filename} you can:
${lineno}
${filename}
git blame -L ${lineno},${lineno} ${filename}
Example:
git blame -L 2,2 test.txt