Template:Simgear clone

From FlightGear wiki
Jump to navigation Jump to search

git clone https://gitlab.com/flightgear/simgear.git


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 SimGear git repository. It is a subtemplate of the master {{repo link}} template designed to be specific for the FlightGear repository.

Usage

{{simgear clone
| opt        =
| protocol   =
| 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
protocol The URL protocol, for example https, http, ssh. This defaults to https. 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://gitlab.com

To use the <code> tags:

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

https://gitlab.com

Examples

{{simgear clone
| opt  = -v
| post = simgear
}}

git clone -v https://gitlab.com/flightgear/simgear.git simgear

Specifying the git protocol:

{{simgear clone
| opt      = -v
| protocol = git
| post     = simgear
}}

git clone -v git://gitlab.com/flightgear/simgear.git simgear

Specifying the https protocol:

{{simgear clone
| opt      = -v
| protocol = https
| post     = simgear
}}

git clone -v https://gitlab.com/flightgear/simgear.git simgear

Related templates