Skip to content

Commit 59de1e5

Browse files
committed
Fix: issue 1103 out of date text
1 parent 90dd430 commit 59de1e5

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

episodes/07-github.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff 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
441437
particular commit. Green shaded lines indicate additions and red ones removals. In the shell we
442438
can do the same thing with `git diff`. In particular, `git diff ID1..ID2` where ID1 and
443439
ID2 are commit identifiers (e.g. `git diff a3bf1e5..041e637`) will show the differences
444440
between 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+
446445
The right-most button lets you view all of the files in the repository at the time of that
447446
commit. To do this in the shell, we'd need to checkout the repository at that particular time.
448447
We can do this with `git checkout ID` where ID is the identifier of the commit we want to

0 commit comments

Comments
 (0)