Template:Fgdata clone: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
(Removal of a trailing whitespace character.)
(The 'opt' parameter is now sent into {{repo link}} as the 'opt' parameter, rather than being appended to 'cmd'.)
Line 1: Line 1:
{{#tag:nowiki|{{repo link
{{#tag:nowiki|{{repo link
| site    = {{project infrastructure|abbrev}}
| site    = {{project infrastructure|abbrev}}
| cmd      = git clone {{{opt|}}}
| cmd      = git clone
| opt      = {{{opt|}}}
| protocol = git
| protocol = git
| type    = git
| type    = git

Revision as of 22:05, 6 March 2016

git clone git://git.code.sf.net/p/flightgear/fgdata/


The following template description is not displayed when the template is inserted in an article.

Goal

To provide a consistent representation of the command to clone the FGData git repository. It is a subtemplate of the master {{repo link}} template designed to be specific for the FlightGear repository.

Usage

{{fgdata clone
| opt        =
| post       =
}}

The parameters are:

Parameter Description Abbreviated
parameter
Numbered
parameter
Status
opt Any additional options to show after the command git clone, but before the URL. optional
post Text to append. This is forms a set with the parameter opt. For example it can represent any command line options that come after the URL. optional

Plain text

To create a URL or link as plain text and avoid external links, simply use the {{#tag:tagname|content}} magic word construct:

{{#tag:nowiki|
  {{repo link
  | full = 1
  }}
}}

https://sourceforge.net/p/flightgear/flightgear/ci/next/tree/

To use the <code> tags:

{{#tag:code|{{#tag:nowiki|
  {{repo link
  | full = 1
  }}
}}}}

https://sourceforge.net/p/flightgear/flightgear/ci/next/tree/

Example

{{fgdata clone
| opt  = -v
| post = MISSING
}}

git clone -v git://git.code.sf.net/p/flightgear/fgdata/ MISSING

Related templates