-
To find the commit which reverted the controls, first I'll type git log.
-
Now, I don't see a commit with the message revert controls yet, so
-
I'll press the down arrow and scroll down.
-
And here it is.
-
Since I found it, I'll press Q to quit out of git log.
-
So this is the commit ID of the commit that reverted the controls.
-
It starts with b067.
-
Now I want to see how many lines were introduced in this commit.
-
Remember that the changes introduced by this commit will be
-
different from the previous commit.
-
So, I can copy this commit ID, type git diff and
-
paste it, and then I'll copy and paste this commit ID.
-
Now I can just count up the lines that have changed.
-
So far, there's two insertions and two deletions.
-
We'll scroll down.
-
Another insertion and deletion, so that's three each.
-
Another, so four each.
-
And I'll press Q to quit git diff.
-
So, the correct commit ID started with b067 and
-
there were four lines added and four lines deleted by that commit.