Skip to content

Commit 5b7d502

Browse files
committed
Merge pull request progit#40 from Ralle/progit
2 parents 5516cb1 + 92dc45e commit 5b7d502

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

en/02-git-basics/01-chapter2.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ You can also use a series of summarizing options with `git log`. For example, if
516516
3 files changed, 54 insertions(+), 0 deletions(-)
517517

518518
As you can see, the `--stat` option prints below each commit entry a list of modified files, how many files were changed, and how many lines in those files were added and removed. It also puts a summary of the information at the end.
519-
Another really useful option is `--pretty`. This option changes the log output to formats other than the default. A few prebuilt options are available for you to use. The oneline option prints each commit on a single line, which is useful if you’re looking at a lot of commits. In addition, the `short`, `full`, and `fuller` options show the output in roughly the same format but with less or more information, respectively:
519+
Another really useful option is `--pretty`. This option changes the log output to formats other than the default. A few prebuilt options are available for you to use. The `oneline` option prints each commit on a single line, which is useful if you’re looking at a lot of commits. In addition, the `short`, `full`, and `fuller` options show the output in roughly the same format but with less or more information, respectively:
520520

521521
$ git log --pretty=oneline
522522
ca82a6dff817ec66f44342007202690a93763949 changed the version number

0 commit comments

Comments
 (0)