Skip to content

Commit 9e4bc29

Browse files
authored
Pull request fixes on git log
1 parent d1a8cd3 commit 9e4bc29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

version-control/command-line/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ $ git log
6464
6565
By default, with no arguments, git log shows the most recent commits first.
6666

67-
If we want to limit the number of log entries displayed we can use the a number as an option, such as -3 to show only the last three entries.
67+
If we want to limit the number of log entries displayed we can use a number as an option, such as -3 to show only the last three entries.
6868

6969
```bash
7070
$ git log -3
@@ -82,7 +82,7 @@ If we want to see a few stats for each commit we can use the --stat command.
8282
$ git log --stat
8383
```
8484

85-
Even can do graphs with the --graph command. It will display an ASCII graph of the branch and merge history beside the log output.
85+
With the --graph command we will be able to draw a graphical representation of the commits. It will display an ASCII graph of the branch and merge history beside the log output.
8686
We can use this command with the --oneline command to display the commits in an alternate format in one line.
8787

8888
```bash

0 commit comments

Comments
 (0)