Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR Free Software Foundation, Inc.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2019-08-27 18:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. type: Labeled list
#: en/blame-options.txt:1 en/diff-options.txt:666 en/git-instaweb.txt:45 en/git-mailinfo.txt:47 en/git-mailsplit.txt:35 en/git-repack.txt:126 en/git-status.txt:31
#, no-wrap, priority:280
msgid "-b"
msgstr ""
#. type: Plain text
#: en/blame-options.txt:4
#, priority:100
msgid "Show blank SHA-1 for boundary commits. This can also be controlled via the `blame.blankboundary` config option."
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:5 en/git-diff-tree.txt:42 en/git-format-patch.txt:319 en/git-fsck.txt:38 en/git-rebase.txt:471
#, no-wrap, priority:100
msgid "--root"
msgstr ""
#. type: Plain text
#: en/blame-options.txt:8
#, priority:100
msgid "Do not treat root commits as boundaries. This can also be controlled via the `blame.showRoot` config option."
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:9
#, no-wrap, priority:100
msgid "--show-stats"
msgstr ""
#. type: Plain text
#: en/blame-options.txt:11
#, priority:100
msgid "Include additional statistics at the end of blame output."
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:12
#, no-wrap, priority:100
msgid "-L <start>,<end>"
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:13
#, no-wrap, priority:100
msgid "-L :<funcname>"
msgstr ""
#. type: Plain text
#: en/blame-options.txt:16
#, priority:100
msgid "Annotate only the given line range. May be specified multiple times. Overlapping ranges are allowed."
msgstr ""
#. type: Plain text
#: en/blame-options.txt:19
#, priority:100
msgid "<start> and <end> are optional. ``-L <start>'' or ``-L <start>,'' spans from <start> to end of file. ``-L ,<end>'' spans from start of file to <end>."
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:22 en/git-archive.txt:43 en/git-branch.txt:171 en/git-checkout.txt:198 en/git-clone.txt:44 en/git-config.txt:164 en/git-grep.txt:186 en/git-instaweb.txt:23 en/git-ls-tree.txt:51 en/git-repack.txt:66 en/git-svn.txt:244 en/git-tag.txt:99 en/git-var.txt:20
#, no-wrap, priority:300
msgid "-l"
msgstr ""
#. type: Plain text
#: en/blame-options.txt:24
#, priority:100
msgid "Show long rev (Default: off)."
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:25 en/fetch-options.txt:141 en/git-branch.txt:205 en/git-cat-file.txt:36 en/git-checkout.txt:158 en/git-diff-tree.txt:39 en/git-ls-files.txt:113 en/git-ls-remote.txt:26 en/git-ls-tree.txt:47 en/git-svn.txt:312 en/git-switch.txt:151 en/rev-list-options.txt:1000
#, no-wrap, priority:260
msgid "-t"
msgstr ""
#. type: Plain text
#: en/blame-options.txt:27
#, priority:100
msgid "Show raw timestamp (Default: off)."
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:28
#, no-wrap, priority:100
msgid "-S <revs-file>"
msgstr ""
#. type: Plain text
#: en/blame-options.txt:30
#, priority:100
msgid "Use revisions from revs-file instead of calling linkgit:git-rev-list[1]."
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:31
#, no-wrap, priority:100
msgid "--reverse <rev>..<rev>"
msgstr ""
#. type: Plain text
#: en/blame-options.txt:38
#, priority:100
msgid "Walk history forward instead of backward. Instead of showing the revision in which a line appeared, this shows the last revision in which a line has existed. This requires a range of revision like START..END where the path to blame exists in START. `git blame --reverse START` is taken as `git blame --reverse START..HEAD` for convenience."
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:39 en/diff-options.txt:16 en/diff-options.txt:22 en/fetch-options.txt:95 en/git-add.txt:88 en/git-cat-file.txt:49 en/git-checkout.txt:268 en/git-commit.txt:70 en/git-cvsexportcommit.txt:41 en/git-grep.txt:237 en/git-instaweb.txt:41 en/git-merge-file.txt:63 en/git-rebase.txt:433 en/git-request-pull.txt:29 en/git-restore.txt:46 en/git-svn.txt:535 en/git-svn.txt:679 en/git.txt:101
#, no-wrap, priority:300
msgid "-p"
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:40 en/git-commit.txt:113 en/git-push.txt:176 en/git-worktree.txt:179
#, no-wrap, priority:280
msgid "--porcelain"
msgstr ""
#. type: Plain text
#: en/blame-options.txt:42
#, priority:100
msgid "Show in a format designed for machine consumption."
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:43
#, no-wrap, priority:100
msgid "--line-porcelain"
msgstr ""
#. type: Plain text
#: en/blame-options.txt:47
#, priority:100
msgid "Show the porcelain format, but output commit information for each line, not just the first time a commit is referenced. Implies --porcelain."
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:48 en/git-pack-objects.txt:138 en/git-svn.txt:373
#, no-wrap, priority:100
msgid "--incremental"
msgstr ""
#. type: Plain text
#: en/blame-options.txt:51
#, priority:100
msgid "Show the result incrementally in a format designed for machine consumption."
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:52 en/git-mailinfo.txt:62 en/pretty-options.txt:35
#, no-wrap, priority:260
msgid "--encoding=<encoding>"
msgstr ""
#. type: Plain text
#: en/blame-options.txt:58
#, priority:100
msgid "Specifies the encoding used to output author names and commit summaries. Setting it to `none` makes blame output unconverted data. For more information see the discussion about encoding in the linkgit:git-log[1] manual page."
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:59
#, no-wrap, priority:100
msgid "--contents <file>"
msgstr ""
#. type: Plain text
#: en/blame-options.txt:65
#, priority:100
msgid "When <rev> is not specified, the command annotates the changes starting backwards from the working tree copy. This flag makes the command pretend as if the working tree copy has the contents of the named file (specify `-` to make the command read from the standard input)."
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:66
#, no-wrap, priority:100
msgid "--date <format>"
msgstr ""
#. type: Plain text
#: en/blame-options.txt:72
#, priority:100
msgid "Specifies the format used to output dates. If --date is not provided, the value of the blame.date config variable is used. If the blame.date config variable is also not set, the iso format is used. For supported values, see the discussion of the --date option at linkgit:git-log[1]."
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:73 en/git-fsck.txt:100
#, no-wrap, priority:100
msgid "--[no-]progress"
msgstr ""
#. type: Plain text
#: en/blame-options.txt:79
#, priority:100
msgid "Progress status is reported on the standard error stream by default when it is attached to a terminal. This flag enables progress reporting even if not attached to a terminal. Can't use `--progress` together with `--porcelain` or `--incremental`."
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:80
#, no-wrap, priority:100
msgid "-M[<num>]"
msgstr ""
#. type: Plain text
#: en/blame-options.txt:90
#, priority:100
msgid "Detect moved or copied lines within a file. When a commit moves or copies a block of lines (e.g. the original file has A and then B, and the commit changes it to B and then A), the traditional 'blame' algorithm notices only half of the movement and typically blames the lines that were moved up (i.e. B) to the parent and assigns blame to the lines that were moved down (i.e. A) to the child commit. With this option, both groups of lines are blamed on the parent by running extra passes of inspection."
msgstr ""
#. type: Plain text
#: en/blame-options.txt:95
#, priority:100
msgid "<num> is optional but it is the lower bound on the number of alphanumeric characters that Git must detect as moving/copying within a file for it to associate those lines with the parent commit. The default value is 20."
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:96
#, no-wrap, priority:100
msgid "-C[<num>]"
msgstr ""
#. type: Plain text
#: en/blame-options.txt:105
#, priority:100
msgid "In addition to `-M`, detect lines moved or copied from other files that were modified in the same commit. This is useful when you reorganize your program and move code around across files. When this option is given twice, the command additionally looks for copies from other files in the commit that creates the file. When this option is given three times, the command additionally looks for copies from other files in any commit."
msgstr ""
#. type: Plain text
#: en/blame-options.txt:112
#, priority:100
msgid "<num> is optional but it is the lower bound on the number of alphanumeric characters that Git must detect as moving/copying between files for it to associate those lines with the parent commit. And the default value is 40. If there are more than one `-C` options given, the <num> argument of the last `-C` will take effect."
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:113
#, no-wrap, priority:100
msgid "--ignore-rev <rev>"
msgstr ""
#. type: Plain text
#: en/blame-options.txt:124
#, priority:100
msgid "Ignore changes made by the revision when assigning blame, as if the change never happened. Lines that were changed or added by an ignored commit will be blamed on the previous commit that changed that line or nearby lines. This option may be specified multiple times to ignore more than one revision. If the `blame.markIgnoredLines` config option is set, then lines that were changed by an ignored commit and attributed to another commit will be marked with a `?` in the blame output. If the `blame.markUnblamableLines` config option is set, then those lines touched by an ignored commit that we could not attribute to another revision are marked with a '*'."
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:125
#, no-wrap, priority:100
msgid "--ignore-revs-file <file>"
msgstr ""
#. type: Plain text
#: en/blame-options.txt:131
#, priority:100
msgid "Ignore revisions listed in `file`, which must be in the same format as an `fsck.skipList`. This option may be repeated, and these files will be processed after any files specified with the `blame.ignoreRevsFile` config option. An empty file name, `\"\"`, will clear the list of revs from previously processed files."
msgstr ""
#. type: Labeled list
#: en/blame-options.txt:132 en/git-archimport.txt:71 en/git-cvsimport.txt:184 en/git-cvsserver.txt:48 en/git-grep.txt:144 en/git-ls-remote.txt:24
#, no-wrap, priority:100
msgid "-h"
msgstr ""
#. type: Plain text
#: en/blame-options.txt:133
#, priority:100
msgid "Show help message."
msgstr ""
#. type: Plain text
#: en/cmds-ancillaryinterrogators.txt:1 en/git-blame.txt:233
#, no-wrap, priority:100
msgid "linkgit:git-annotate[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillaryinterrogators.txt:3
#, priority:100
msgid "Annotate file lines with commit information."
msgstr ""
#. type: Plain text
#: en/cmds-ancillaryinterrogators.txt:4 en/git-annotate.txt:30
#, no-wrap, priority:100
msgid "linkgit:git-blame[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillaryinterrogators.txt:6
#, priority:100
msgid "Show what revision and author last modified each line of a file."
msgstr ""
#. type: Labeled list
#: en/cmds-ancillaryinterrogators.txt:7
#, no-wrap, priority:100
msgid "linkgit:git-count-objects[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillaryinterrogators.txt:9
#, priority:100
msgid "Count unpacked number of objects and their disk consumption."
msgstr ""
#. type: Labeled list
#: en/cmds-ancillaryinterrogators.txt:10
#, no-wrap, priority:100
msgid "linkgit:git-difftool[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillaryinterrogators.txt:12
#, priority:100
msgid "Show changes using common diff tools."
msgstr ""
#. type: Labeled list
#: en/cmds-ancillaryinterrogators.txt:13
#, no-wrap, priority:100
msgid "linkgit:git-fsck[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillaryinterrogators.txt:15 en/git-fsck.txt:20
#, priority:100
msgid "Verifies the connectivity and validity of the objects in the database."
msgstr ""
#. type: Labeled list
#: en/cmds-ancillaryinterrogators.txt:16
#, no-wrap, priority:100
msgid "linkgit:git-help[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillaryinterrogators.txt:18
#, priority:100
msgid "Display help information about Git."
msgstr ""
#. type: Labeled list
#: en/cmds-ancillaryinterrogators.txt:19
#, no-wrap, priority:100
msgid "linkgit:git-instaweb[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillaryinterrogators.txt:21
#, priority:100
msgid "Instantly browse your working repository in gitweb."
msgstr ""
#. type: Labeled list
#: en/cmds-ancillaryinterrogators.txt:22
#, no-wrap, priority:100
msgid "linkgit:git-merge-tree[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillaryinterrogators.txt:24
#, priority:100
msgid "Show three-way merge without touching index."
msgstr ""
#. type: Labeled list
#: en/cmds-ancillaryinterrogators.txt:25
#, no-wrap, priority:100
msgid "linkgit:git-rerere[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillaryinterrogators.txt:27
#, priority:100
msgid "Reuse recorded resolution of conflicted merges."
msgstr ""
#. type: Labeled list
#: en/cmds-ancillaryinterrogators.txt:28
#, no-wrap, priority:100
msgid "linkgit:git-show-branch[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillaryinterrogators.txt:30
#, priority:100
msgid "Show branches and their commits."
msgstr ""
#. type: Labeled list
#: en/cmds-ancillaryinterrogators.txt:31
#, no-wrap, priority:100
msgid "linkgit:git-verify-commit[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillaryinterrogators.txt:33
#, priority:100
msgid "Check the GPG signature of commits."
msgstr ""
#. type: Labeled list
#: en/cmds-ancillaryinterrogators.txt:34
#, no-wrap, priority:100
msgid "linkgit:git-verify-tag[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillaryinterrogators.txt:36
#, priority:100
msgid "Check the GPG signature of tags."
msgstr ""
#. type: Labeled list
#: en/cmds-ancillaryinterrogators.txt:37
#, no-wrap, priority:100
msgid "linkgit:git-whatchanged[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillaryinterrogators.txt:39
#, priority:100
msgid "Show logs with difference each commit introduces."
msgstr ""
#. type: Plain text
#: en/cmds-ancillaryinterrogators.txt:40 en/git-instaweb.txt:91
#, no-wrap, priority:100
msgid "linkgit:gitweb[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillaryinterrogators.txt:42
#, priority:100
msgid "Git web interface (web frontend to Git repositories)."
msgstr ""
#. type: Labeled list
#: en/cmds-ancillarymanipulators.txt:1 en/git-difftool.txt:144
#, no-wrap, priority:100
msgid "linkgit:git-config[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillarymanipulators.txt:3
#, priority:100
msgid "Get and set repository or global options."
msgstr ""
#. type: Plain text
#: en/cmds-ancillarymanipulators.txt:4 en/git-fast-import.txt:1505
#, no-wrap, priority:100
msgid "linkgit:git-fast-export[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillarymanipulators.txt:6
#, priority:100
msgid "Git data exporter."
msgstr ""
#. type: Plain text
#: en/cmds-ancillarymanipulators.txt:7 en/git-fast-export.txt:243
#, no-wrap, priority:100
msgid "linkgit:git-fast-import[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillarymanipulators.txt:9
#, priority:100
msgid "Backend for fast Git data importers."
msgstr ""
#. type: Labeled list
#: en/cmds-ancillarymanipulators.txt:10
#, no-wrap, priority:100
msgid "linkgit:git-filter-branch[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillarymanipulators.txt:12
#, priority:100
msgid "Rewrite branches."
msgstr ""
#. type: Labeled list
#: en/cmds-ancillarymanipulators.txt:13 en/git-difftool.txt:141
#, no-wrap, priority:100
msgid "linkgit:git-mergetool[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillarymanipulators.txt:15
#, priority:100
msgid "Run merge conflict resolution tools to resolve merge conflicts."
msgstr ""
#. type: Labeled list
#: en/cmds-ancillarymanipulators.txt:16
#, no-wrap, priority:100
msgid "linkgit:git-pack-refs[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillarymanipulators.txt:18
#, priority:100
msgid "Pack heads and tags for efficient repository access."
msgstr ""
#. type: Labeled list
#: en/cmds-ancillarymanipulators.txt:19
#, no-wrap, priority:100
msgid "linkgit:git-prune[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillarymanipulators.txt:21
#, priority:100
msgid "Prune all unreachable objects from the object database."
msgstr ""
#. type: Labeled list
#: en/cmds-ancillarymanipulators.txt:22
#, no-wrap, priority:100
msgid "linkgit:git-reflog[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillarymanipulators.txt:24
#, priority:100
msgid "Manage reflog information."
msgstr ""
#. type: Labeled list
#: en/cmds-ancillarymanipulators.txt:25
#, no-wrap, priority:100
msgid "linkgit:git-remote[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillarymanipulators.txt:27
#, priority:100
msgid "Manage set of tracked repositories."
msgstr ""
#. type: Labeled list
#: en/cmds-ancillarymanipulators.txt:28
#, no-wrap, priority:100
msgid "linkgit:git-repack[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillarymanipulators.txt:30
#, priority:100
msgid "Pack unpacked objects in a repository."
msgstr ""
#. type: Labeled list
#: en/cmds-ancillarymanipulators.txt:31
#, no-wrap, priority:100
msgid "linkgit:git-replace[1]"
msgstr ""
#. type: Plain text
#: en/cmds-ancillarymanipulators.txt:33
#, priority:100
msgid "Create, list, delete refs to replace objects."
msgstr ""
#. type: Labeled list
#: en/cmds-foreignscminterface.txt:1
#, no-wrap, priority:100
msgid "linkgit:git-archimport[1]"
msgstr ""
#. type: Plain text
#: en/cmds-foreignscminterface.txt:3
#, priority:100
msgid "Import a GNU Arch repository into Git."
msgstr ""
#. type: Labeled list
#: en/cmds-foreignscminterface.txt:4
#, no-wrap, priority:100
msgid "linkgit:git-cvsexportcommit[1]"
msgstr ""
#. type: Plain text
#: en/cmds-foreignscminterface.txt:6
#, priority:100
msgid "Export a single commit to a CVS checkout."
msgstr ""
#. type: Labeled list
#: en/cmds-foreignscminterface.txt:7
#, no-wrap, priority:100
msgid "linkgit:git-cvsimport[1]"
msgstr ""
#. type: Plain text
#: en/cmds-foreignscminterface.txt:9
#, priority:100
msgid "Salvage your data out of another SCM people love to hate."
msgstr ""
#. type: Labeled list
#: en/cmds-foreignscminterface.txt:10
#, no-wrap, priority:100
msgid "linkgit:git-cvsserver[1]"
msgstr ""
#. type: Plain text
#: en/cmds-foreignscminterface.txt:12
#, priority:100
msgid "A CVS server emulator for Git."
msgstr ""
#. type: Labeled list
#: en/cmds-foreignscminterface.txt:13
#, no-wrap, priority:100
msgid "linkgit:git-imap-send[1]"
msgstr ""
#. type: Plain text
#: en/cmds-foreignscminterface.txt:15
#, priority:100
msgid "Send a collection of patches from stdin to an IMAP folder."
msgstr ""
#. type: Labeled list
#: en/cmds-foreignscminterface.txt:16
#, no-wrap, priority:100
msgid "linkgit:git-p4[1]"
msgstr ""
#. type: Plain text
#: en/cmds-foreignscminterface.txt:18
#, priority:100
msgid "Import from and submit to Perforce repositories."
msgstr ""
#. type: Labeled list
#: en/cmds-foreignscminterface.txt:19
#, no-wrap, priority:100
msgid "linkgit:git-quiltimport[1]"
msgstr ""
#. type: Plain text
#: en/cmds-foreignscminterface.txt:21
#, priority:100
msgid "Applies a quilt patchset onto the current branch."
msgstr ""
#. type: Labeled list
#: en/cmds-foreignscminterface.txt:22
#, no-wrap, priority:100
msgid "linkgit:git-request-pull[1]"
msgstr ""
#. type: Plain text
#: en/cmds-foreignscminterface.txt:24
#, priority:100
msgid "Generates a summary of pending changes."
msgstr ""
#. type: Labeled list
#: en/cmds-foreignscminterface.txt:25
#, no-wrap, priority:100
msgid "linkgit:git-send-email[1]"
msgstr ""
#. type: Plain text
#: en/cmds-foreignscminterface.txt:27
#, priority:100
msgid "Send a collection of patches as emails."
msgstr ""
#. type: Labeled list
#: en/cmds-foreignscminterface.txt:28
#, no-wrap, priority:100
msgid "linkgit:git-svn[1]"
msgstr ""
#. type: Plain text
#: en/cmds-foreignscminterface.txt:30
#, priority:100
msgid "Bidirectional operation between a Subversion repository and Git."
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:1 en/git-rm.txt:186
#, no-wrap, priority:280
msgid "linkgit:git-add[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:3
#, priority:100
msgid "Add file contents to the index."
msgstr ""
#. type: Labeled list
#: en/cmds-mainporcelain.txt:4
#, no-wrap, priority:100
msgid "linkgit:git-am[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:6
#, priority:100
msgid "Apply a series of patches from a mailbox."
msgstr ""
#. type: Labeled list
#: en/cmds-mainporcelain.txt:7
#, no-wrap, priority:100
msgid "linkgit:git-archive[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:9
#, priority:100
msgid "Create an archive of files from a named tree."
msgstr ""
#. type: Labeled list
#: en/cmds-mainporcelain.txt:10
#, no-wrap, priority:100
msgid "linkgit:git-bisect[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:12
#, priority:100
msgid "Use binary search to find the commit that introduced a bug."
msgstr ""
#. type: Labeled list
#: en/cmds-mainporcelain.txt:13
#, no-wrap, priority:100
msgid "linkgit:git-branch[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:15
#, priority:100
msgid "List, create, or delete branches."
msgstr ""
#. type: Labeled list
#: en/cmds-mainporcelain.txt:16
#, no-wrap, priority:100
msgid "linkgit:git-bundle[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:18
#, priority:100
msgid "Move objects and refs by archive."
msgstr ""
#. type: Labeled list
#: en/cmds-mainporcelain.txt:19
#, no-wrap, priority:100
msgid "linkgit:git-checkout[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:21
#, priority:100
msgid "Switch branches or restore working tree files."
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:22 en/git-revert.txt:139
#, no-wrap, priority:100
msgid "linkgit:git-cherry-pick[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:24
#, priority:100
msgid "Apply the changes introduced by some existing commits."
msgstr ""
#. type: Labeled list
#: en/cmds-mainporcelain.txt:25
#, no-wrap, priority:100
msgid "linkgit:git-citool[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:27
#, priority:100
msgid "Graphical alternative to git-commit."
msgstr ""
#. type: Labeled list
#: en/cmds-mainporcelain.txt:28
#, no-wrap, priority:100
msgid "linkgit:git-clean[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:30
#, priority:100
msgid "Remove untracked files from the working tree."
msgstr ""
#. type: Labeled list
#: en/cmds-mainporcelain.txt:31
#, no-wrap, priority:100
msgid "linkgit:git-clone[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:33
#, priority:100
msgid "Clone a repository into a new directory."
msgstr ""
#. type: Labeled list
#: en/cmds-mainporcelain.txt:34
#, no-wrap, priority:100
msgid "linkgit:git-commit[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:36
#, priority:100
msgid "Record changes to the repository."
msgstr ""
#. type: Labeled list
#: en/cmds-mainporcelain.txt:37
#, no-wrap, priority:100
msgid "linkgit:git-describe[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:39
#, priority:100
msgid "Give an object a human readable name based on an available ref."
msgstr ""
#. type: Labeled list
#: en/cmds-mainporcelain.txt:40 en/git-difftool.txt:138
#, no-wrap, priority:100
msgid "linkgit:git-diff[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:42
#, priority:100
msgid "Show changes between commits, commit and working tree, etc."
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:43 en/git-fetch-pack.txt:129
#, no-wrap, priority:100
msgid "linkgit:git-fetch[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:45
#, priority:100
msgid "Download objects and refs from another repository."
msgstr ""
#. type: Labeled list
#: en/cmds-mainporcelain.txt:46
#, no-wrap, priority:100
msgid "linkgit:git-format-patch[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:48
#, priority:100
msgid "Prepare patches for e-mail submission."
msgstr ""
#. type: Labeled list
#: en/cmds-mainporcelain.txt:49
#, no-wrap, priority:100
msgid "linkgit:git-gc[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:51
#, priority:100
msgid "Cleanup unnecessary files and optimize the local repository."
msgstr ""
#. type: Labeled list
#: en/cmds-mainporcelain.txt:52
#, no-wrap, priority:100
msgid "linkgit:git-grep[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:54
#, priority:100
msgid "Print lines matching a pattern."
msgstr ""
#. type: Labeled list
#: en/cmds-mainporcelain.txt:55
#, no-wrap, priority:100
msgid "linkgit:git-gui[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:57
#, priority:100
msgid "A portable graphical interface to Git."
msgstr ""
#. type: Labeled list
#: en/cmds-mainporcelain.txt:58
#, no-wrap, priority:100
msgid "linkgit:git-init[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:60
#, priority:100
msgid "Create an empty Git repository or reinitialize an existing one."
msgstr ""
#. type: Labeled list
#: en/cmds-mainporcelain.txt:61
#, no-wrap, priority:100
msgid "linkgit:git-log[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:63
#, priority:100
msgid "Show commit logs."
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:64 en/git-fmt-merge-msg.txt:75
#, no-wrap, priority:100
msgid "linkgit:git-merge[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:66
#, priority:100
msgid "Join two or more development histories together."
msgstr ""
#. type: Labeled list
#: en/cmds-mainporcelain.txt:67
#, no-wrap, priority:100
msgid "linkgit:git-mv[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:69
#, priority:100
msgid "Move or rename a file, a directory, or a symlink."
msgstr ""
#. type: Labeled list
#: en/cmds-mainporcelain.txt:70
#, no-wrap, priority:100
msgid "linkgit:git-notes[1]"
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:72
#, priority:100
msgid "Add or inspect object notes."
msgstr ""
#. type: Plain text
#: en/cmds-mainporcelain.txt:73 en/git-fetch.txt:296
#, no-wrap, priority:220
msgid "linkgit:git-pull[1]"
msgstr ""