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
Copy file name to clipboardExpand all lines: README.md
+12-11Lines changed: 12 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -228,14 +228,14 @@ Pipeline is the robust and feature-rich way to checkout from multiple repositori
228
228
<dt>user.name</dt>
229
229
<dd>
230
230
Defines the user name value which git will assign to new commits made in the workspace.
231
-
If given, `git config user.name [this]` is called before builds.
231
+
If given, <code>git config user.name [this]</code> is called before builds.
232
232
This overrides values from the global settings.
233
233
</dd>
234
234
235
235
<dt>user.email</dt>
236
236
<dd>
237
237
Defines the user email value which git will assign to new commits made in the workspace.
238
-
If given, `git config user.email [this]` is called before builds.
238
+
If given, <code>git config user.email [this]</code> is called before builds.
239
239
This overrides whatever is in the global settings.
240
240
</dd>
241
241
@@ -268,13 +268,13 @@ It then may push the merge back to the remote repository if the Git Push post-bu
268
268
269
269
<dt>Name of repository</dt>
270
270
<dd>
271
-
Name of the repository, such as `origin`, that contains the branch.
271
+
Name of the repository, such as <code>origin</code>, that contains the branch.
272
272
If left blank, it'll default to the name of the first repository configured.
273
273
</dd>
274
274
275
275
<dt>Branch to merge to</dt>
276
276
<dd>
277
-
The name of the branch within the named repository to merge to, such as `master`.
277
+
The name of the branch within the named repository to merge to, such as <code>master</code>.
278
278
</dd>
279
279
280
280
<dt>Merge strategy</dt>
@@ -294,9 +294,9 @@ It then may push the merge back to the remote repository if the Git Push post-bu
294
294
<dt>Fast-forward mode</dt>
295
295
<dd>
296
296
<ul>
297
-
<li>`--ff`: fast-forward which gracefully falls back to a merge commit when required</li>
298
-
<li>`--ff-only`: fast-forward without any fallback</li>
299
-
<li>`--no-ff`: merge commit always, even if a ast-forwardwould have been allowed</li>
297
+
<li><code>--ff</code>: fast-forward which gracefully falls back to a merge commit when required</li>
298
+
<li><code>--ff-only</code>: fast-forward without any fallback</li>
299
+
<li><code>--no-ff</code>: merge commit always, even if a ast-forwardwould have been allowed</li>
300
300
</ul>
301
301
</dd>
302
302
@@ -315,7 +315,7 @@ It then may push the merge back to the remote repository if the Git Push post-bu
315
315
<dd>
316
316
If set and Jenkins is configured to poll for changes, Jenkins will ignore any revisions committed by users in this list when determining if a build should be triggered.
317
317
This can be used to exclude commits done by the build itself from triggering another build, assuming the build server commits the change with a distinct SCM user.
318
-
Using this behaviour will preclude the faster git `ls-remote` polling mechanism, forcing polling to require a workspace, as if you had selected the Force polling using workspace extension as well.
318
+
Using this behaviour will preclude the faster <code>git ls-remote</code> polling mechanism, forcing polling to require a workspace, as if you had selected the Force polling using workspace extension as well.
319
319
320
320
<p>Each exclusion uses literal pattern matching, and must be separated by a new line.</p>
321
321
</dd>
@@ -328,7 +328,7 @@ If set and Jenkins is configured to poll for changes, Jenkins will pay attention
328
328
329
329
Using this behaviour will preclude the faster remote polling mechanism, forcing polling to require a workspace thus sometimes triggering unwanted builds, as if you had selected the Force polling using workspace extension as well.
330
330
This can be used to exclude commits done by the build itself from triggering another build, assuming the build server commits the change with a distinct SCM user.
331
-
Using this behaviour will preclude the faster git `ls-remote` polling mechanism, forcing polling to require a workspace, as if you had selected the Force polling using workspace extension as well.
331
+
Using this behaviour will preclude the faster <code>git ls-remote</code> polling mechanism, forcing polling to require a workspace, as if you had selected the Force polling using workspace extension as well.
332
332
333
333
<dl>
334
334
@@ -435,8 +435,8 @@ Some git plugin settings can only be controlled from command line properties set
435
435
436
436
<dt>Default timeout</dt>
437
437
<dd>
438
-
The default initial git timeout value can be overridden through the property `org.jenkinsci.plugins.gitclient.Git.timeOut` (see JENKINS-11286) ).
439
-
The property should be set on both master and agent to have effect (see JENKINS-22547).
438
+
The default initial git timeout value can be overridden through the property <code>org.jenkinsci.plugins.gitclient.Git.timeOut</code> (see <ahref="https://issues.jenkins-ci.org/browse/JENKINS-11286">JENKINS-11286</a>) ).
439
+
The property should be set on both master and agent to have effect (see <ahref="https://issues.jenkins-ci.org/browse/JENKINS-22547">JENKINS-22547</a>).
440
440
</dd>
441
441
442
442
</dl>
@@ -445,6 +445,7 @@ Some git plugin settings can only be controlled from command line properties set
445
445
446
446
A single reference repository may contain commits from multiple repositories.
447
447
For example, if a repository named `parent` includes references to submodules `child-1` and `child-2`, a reference repository could be created to cache commits from all three repositories using the commands:
0 commit comments