Package: git-extras / 1.9.1-2

escape_line_dot_start.patch Patch series | download
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
Description: escape man lines starting with a dot
 nroff would think these lines as macros and produce and error that it's not
 a known one.
Author: Laszlo Boszormenyi (GCS) <gcs@debian.org>

---

--- git-extras-1.9.0.orig/man/git-bug.md
+++ git-extras-1.9.0/man/git-bug.md
@@ -22,9 +22,9 @@ git-bug(1) -- Create bug branch
 ## EXAMPLES
 
     $ git bug bug-123456
-    ...
+    `...`
     $ git commit -m "Some changes"
-    ...
+    `...`
     $ git checkout master
     $ git bug finish bug-123456
 
--- git-extras-1.9.0.orig/man/git-commits-since.md
+++ git-extras-1.9.0/man/git-commits-since.md
@@ -20,7 +20,7 @@ git-commits-since(1) -- Show commit logs
   It is really flexible and these are only 3 of the options, go ahead give it a try:
 
     $ git commits-since yesterday
-    ... commits since yesterday
+    `... commits since yesterday`
     nickl- - Merge branch upstream master.
     nickl- - Rebase bolshakov with master
     TJ Holowaychuk - Merge pull request #128 from nickl-/git-extras-html-hyperlinks
@@ -28,11 +28,11 @@ git-commits-since(1) -- Show commit logs
     nickl- - Fix #127 git-ignore won't add duplicates.
 
     $ git commits-since 3 o clock pm
-    ... commits since 3 o clock pm
+    `... commits since 3 o clock pm`
     nickl- - Merge branch upstream master.
 
     $ git commits-since 2 hour ago
-    ... commits since 2 hour ago
+    `... commits since 2 hour ago`
     nickl- - Merge branch upstream master.
     TJ Holowaychuk - Merge pull request #128 from nickl-/git-extras-html-hyperlinks
     TJ Holowaychuk - Merge pull request #129 from nickl-/develop
--- git-extras-1.9.0.orig/man/git-contrib.md
+++ git-extras-1.9.0/man/git-contrib.md
@@ -24,7 +24,7 @@ git-contrib(1) -- Show user's contributi
       Moved help msg to node-repl
       Added multiple arg support for sys.puts(), print(), etc.
       Fix stack output on socket error
-      ...
+      `...`
 
 ## AUTHOR
 
--- git-extras-1.9.0.orig/man/git-feature.md
+++ git-extras-1.9.0/man/git-feature.md
@@ -22,9 +22,9 @@ git-feature(1) -- Create feature branch
 ## EXAMPLES
 
     $ git feature dependencies
-    ...
+    `...`
     $ git commit -m "Some changes"
-    ...
+    `...`
     $ git checkout master
     $ git feature finish dependencies
 
--- git-extras-1.9.0.orig/man/git-ignore.md
+++ git-extras-1.9.0/man/git-ignore.md
@@ -62,47 +62,47 @@ Pattern format as described in the git m
     *.sass-cache
 
     # OS or Editor folders
-    .DS_Store
-    .Trashes
-    ._*
+    `.DS_Store`
+    `.Trashes`
+    `._*`
     Thumbs.db
     ---------------------------------
     Local gitignore: .gitignore
-    .cache
-    .project
-    .settings
-    .tmproj
+    `.cache`
+    `.project`
+    `.settings`
+    `.tmproj`
     nbproject
 
 If you only want to see the global context use the --global argument (for local use --local):
 
     $ git ignore
     Global gitignore: /home/alice/.gitignore
-    .DS_Store
-    .Trashes
-    ._*
+    `.DS_Store`
+    `.Trashes`
+    `._*`
     Thumbs.db
 
 To quickly append a new pattern to the default/local context simply:
 
     $ git ignore *.log
     Adding pattern(s) to: .gitignore
-    ... adding '*.log'
+    `... adding '*.log'`
 
 You can now configure any patterns without ever using an editor, with a context and pattern arguments:
 The resulting configuration is also returned for your convenience.
 
     $ git ignore --local "" "# Temporary files" *.tmp "*.log" tmp/*  "" "# Files I'd like to keep" '!work'  ""
     Adding pattern(s) to: .gitignore
-    ... adding ''
-    ... adding '# Temporary files'
-    ... adding 'index.tmp'
-    ... adding '*.log'
-    ... adding 'tmp/*'
-    ... adding ''
-    ... adding '# Files I'd like to keep'
-    ... adding '!work'
-    ... adding ''
+    `... adding ''`
+    `... adding '# Temporary files'`
+    `... adding 'index.tmp'`
+    `... adding '*.log'`
+    `... adding 'tmp/*'`
+    `... adding ''`
+    `... adding '# Files I'd like to keep'`
+    `... adding '!work'`
+    `... adding ''`
 
     Local gitignore: .gitignore
 
--- git-extras-1.9.0.orig/man/git-refactor.md
+++ git-extras-1.9.0/man/git-refactor.md
@@ -22,9 +22,9 @@ git-refactor(1) -- Create refactor branc
 ## EXAMPLES
 
     $ git refactor mainlib_refactor
-    ...
+    `...`
     $ git commit -m "Some changes"
-    ...
+    `...`
     $ git checkout master
     $ git refactor finish mainlib_refactor