You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The formatting of the tables in the book follow the rule of column seperations
by tab characters. Remind the translators to follow this rule where it is applied
in the original text.
Copy file name to clipboardExpand all lines: en/02-git-basics/01-chapter2.markdown
+15
Original file line number
Diff line number
Diff line change
@@ -561,6 +561,11 @@ The most interesting option is `format`, which allows you to specify your own lo
561
561
562
562
Table 2-1 lists some of the more useful options that format takes.
563
563
564
+
<!-- Attention to translators: this is a table declaration.
565
+
The lines must be formatted as follows
566
+
<TAB><First column text><TAB><Second column text>
567
+
-->
568
+
564
569
Option Description of Output
565
570
%H Commit hash
566
571
%h Abbreviated commit hash
@@ -596,6 +601,11 @@ The `oneline` and `format` options are particularly useful with another `log` op
596
601
597
602
Those are only some simple output-formatting options to `git log` — there are many more. Table 2-2 lists the options we’ve covered so far and some other common formatting options that may be useful, along with how they change the output of the `log` command.
598
603
604
+
<!-- Attention to translators: this is a table declaration.
605
+
The lines must be formatted as follows
606
+
<TAB><First column text><TAB><Second column text>
607
+
-->
608
+
599
609
Option Description
600
610
-p Show the patch introduced with each commit.
601
611
--word-diff Show the patch in a word diff format.
@@ -625,6 +635,11 @@ The last really useful option to pass to `git log` as a filter is a path. If you
625
635
626
636
In Table 2-3 we’ll list these and a few other common options for your reference.
627
637
638
+
<!-- Attention to translators: this is a table declaration.
639
+
The lines must be formatted as follows
640
+
<TAB><First column text><TAB><Second column text>
641
+
-->
642
+
628
643
Option Description
629
644
-(n) Show only the last n commits
630
645
--since, --after Limit the commits to those made after the specified date.
0 commit comments