File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -433,16 +433,15 @@ How would you get that same information in the shell?
433433
434434## Solution
435435
436- The left-most button (with the picture of a clipboard) copies the full identifier of the commit
437- to the clipboard. In the shell, ` git log ` will show you the full commit identifier for each
438- commit.
439-
440- When you click on the middle button, you'll see all of the changes that were made in that
436+ When you click on the left-most button, you'll see all of the changes that were made in that
441437particular commit. Green shaded lines indicate additions and red ones removals. In the shell we
442438can do the same thing with ` git diff ` . In particular, ` git diff ID1..ID2 ` where ID1 and
443439ID2 are commit identifiers (e.g. ` git diff a3bf1e5..041e637 ` ) will show the differences
444440between those two commits.
445441
442+ The middle button (with the picture of two overlapping squares or pages) copies the full identifier of the commit
443+ to the clipboard. In the shell, ` git log ` will show you the full commit identifier for each commit.
444+
446445The right-most button lets you view all of the files in the repository at the time of that
447446commit. To do this in the shell, we'd need to checkout the repository at that particular time.
448447We can do this with ` git checkout ID ` where ID is the identifier of the commit we want to
You can’t perform that action at this time.
0 commit comments