Download di Git

From mediawiki.org
This page is a translated version of the page Download from Git and the translation is 32% complete.
Outdated translations are marked like this.

Git è un software distribbuitu pô cuntrollu dâ virsioni ca pirmetti a l'utenti di scarricari l'ùrtima virsioni dûn prugramma, senza aviri a aspittari quarchidunu ca lu cundividi. MediaWiki rilascia chiù vilocimenti, e è chiù fàcili pi vui p'aggiurnari la propia nstallazzioni, eseguiri lu rollback di n'aggiurnamentu, o [$bugzilla prisintari patch]. (Ovviamenti arricurdati ca li download ufficiali sunnu chiù stàbbili e menu risicusi.) It allows you to download the very latest version of the source code, with all the branches and tagged releases at your disposal.

You should download from Git if you are a developer and want to submit patches.

If you do not want to develop but only install MediaWiki and extensions, then download stable tarball releases instead.

Talìa Git pi chiossai dittagghi, n particulari p'appurtari un cuntribbutu. Ccà di sèguitu arcuni nnicazzioni viloci pi na para d'opirazzioni cumuni.

Pririquisiti

Tu hai bisognu d'aviri Git nstallatu prima ca tu lu pozza usari. Ci sunnu vari maneri p'accanzari Git, a sicunna dô tò sistema opirativu. Pô surgenti e l'exe visitari [$link git-scm.com]. P'àutri maneri pi nstallari Git, usa lu tò muturi d'arricerca prifirutu p'attruvari li struzzioni pô tò sistema opirativu. Follow Gerrit/Tutorial#Set up Git, or use your favorite search engine.

È raccumannàbbili aviri Composer nstallatu pi scarricari e nstallari li libbrarìi di parti terzi, ma nun è nicissariu.

Usari Git pô download di MediaWiki

Download

Attualmenti è pussìbbili scarricari lu nùcliu MediaWiki(phase3 nta SVN) usannu Git, accussì comu qualegghiè estinzioni attualmenti nstallata ntô cluster dê server Wikimedia Foundation.

Lu primu passu è chiddu di clunari lu repository (dipòsitu) MediaWiki. Putissi addumannari n'anticchia di tempu.

Download pô sviluppu

L'ùrtima virsioni di sviluppu di MediaWiki è tracciata ntô ramu 'master'. Chistu è zocchi veni lucalmenti virificatu di default quannu cloni pâ prima vota lu repository di MediaWiki. Si ti spustasti nta n'àutru ramu ma voi turnari a usari l'urtimìssima virsioni di MediaWiki, esegui:

Si tu hai l' accessu comu sviluppaturi (ch'è fàcili d'addumannari):

Then, in a terminal window, enter the following command to clone the repository:

git clone https://gerrit.wikimedia.org/r/mediawiki/core.git mediawiki

This clones the entire MediaWiki core repository, synced to the master branch, into a sub-directory named mediawiki.

To install into a different directory, change that in the command line (for more info refer to these docs). Once the repository is cloned, you can switch to different branches or tags. The development branch, master, is the cutting-edge, developer version of MediaWiki; you should not use master code for production under any circumstances as it is not considered stable.

Download a stable branch

If you do not want to develop software patches but want to anonymously clone the stable release branch 1.41, use this command instead:

git clone https://gerrit.wikimedia.org/r/mediawiki/core.git --branch REL1_41 mediawiki

If you have a slow internet connection and want to reduce the number of revisions that are cloned, add --depth=1 to the git clone command.

MediaWiki tags (virsioni stàbbili)

N altirnativa, virsioni stàbbili spicìfichi di MediaWiki vennu signati cu 'tag'. Chisti sunnu li stissi dê virsioni tarball. Currently, these are 1.41.0 (stable), 1.39.6 (LTS) and 1.39.6 (legacy LTS).

You can see all available tags with:

git tag -l | sort -V

P'usari un tag spicìficu:

git checkout 1.41.0

Update the Git submodules

The branches and tags have a bunch of Git submodules in them, for commonly-used extensions and skins and for the vendor/ directory. The master branch does not have these. To update the submodules, run:

cd mediawiki
git submodule update --init --recursive

Ricùpiru dê libbrarìi esterni

MediaWiki uses Composer to manage external PHP libraries, all of which end up in the vendor/ directory in your MediaWiki directory.

Pi nstallari tutti li libbrarìi nicissari:

    • If the default PHP CLI version does not match the web server's PHP version, specify it with e.g. php7.4 composer.phar update --no-dev.
  • Or, if you don't want to use Composer or if you want to use the exact same set of vendor libraries as used on the WMF production cluster, you can instead create a vendor/ directory inside the core folder of your MediaWiki installation:


git clone https://gerrit.wikimedia.org/r/mediawiki/vendor.git

    • Note that if any of your extensions have their own Composer requirements, then you cannot use this option.

A pàrtiri di MediaWiki 1.25, arcuni libbrarìi esterni addumannati di MediaWiki nun s'attròvanu chiù ntô nùcliu dô git repository.

Aggiurnamentu cuntìnuu

Si stai usannu un ramu particulari dâ virsioni di sviluppu di MediaWiki, ricupirari l'ùrtimi canciamenti è assai fàcili. Spòstati ntâ tò directory clone di MediaWiki e usa lu cumannu pull:

git pull

Tutti l'ùrtimi canciamenti â vranca ca sta usannu vennu esiguiti.

The new version of core may require newer versions of extensions and skins, so you must go into each extension and skin directory and update it with a command like git pull --recurse-submodules.

You also need to update vendor/ with any newer versions of required libraries. This often means running the following Composer command, but see #Fetch external libraries above for more details:

composer update --no-dev

Noltri, doppu aviri fattu l'update/l'upgrade, avìssitu a esiguiri lu update.php di MediaWiki dâ riga di cumannu:

php maintenance/update.php

If you use MediaWiki-Vagrant , it offers a single command, vagrant git-update, that performs all these steps.

Passari a na virsioni diffirenti

Each of our versions are tracked as branches or tags. In order to switch to a different version (for example from the master branch to a different branch or tag), checkout the particular branch or tag you want from within your MediaWiki clone directory:

git checkout <branch_name>

o

git checkout <tag_name>

Li canciamenti vennu esiguiti n autumàticu e è tuttu prontu pi pàrtiri.

Usari Git pô download di l'estinzioni MediaWiki

Lista d'estinzioni nta git

Scarricari n'estinzioni

<EXT> avissi a èssiri sustituitu cô nomu di l'estinzioni ca voi scarricari, senza spazzi. Pi Extension:TitleKey , è TitleKey. (case sensitive!)

Scàrrica e clona n'estinzioni di Git:

With your developer account, use these commands to get the master branch:

cd /path/to/extensions
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/<EXT>

To clone and checkout a stable release branch instead, use these commands:

cd /path/to/extensions
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/<EXT> --branch REL1_41

You can view extension source code in Gerrit's gitiles application, and at the URL:

https://gerrit.wikimedia.org/g/mediawiki/extensions/<EXT>/+/HEAD


Scàrrica tutti l'estinzioni

Si si prifirisci aviri 'tutti' l'estinzioni MediaWiki ca sunnu nta gerrit.wikimedia.org, cuntrolla lu tò computeru e effèttua l'opirazzioni siguenti:

git clone https://gerrit.wikimedia.org/r/mediawiki/extensions

Or, to checkout stable releases branch instead, use this command:

git clone https://gerrit.wikimedia.org/r/mediawiki/extensions --branch REL1_41

After running the git clone command, continue with these commands:

cd /path/to/extensions
git submodule update --init --recursive

P'aggiurnari l'estinzioni a l'ùrtima virsioni, abbasta fari chistu:

cd /path/to/extensions
git pull
git submodule update --init --recursive

Pi siguiri un ramu spicìficu:

git submodule foreach 'git checkout -b REL1_40 origin/REL1_40 || :'

Remember that you should only use versions of extensions from the same release as that version of MediaWiki and each other.

To track the master branch:

git submodule foreach 'git checkout -b origin/master || :'

Please note that you should not use master code for production under any circumstances as it is not considered stable.

If you only need a read-only checkout (for instance to grep or analyse all MediaWiki code), you can use the shared MediaWiki checkout on Labs, without downloading anything on your machines.

Leva n'estinzioni

  1. Remove the "require_once …" or "wfLoadExtension( … )" from LocalSettings.php
  1. Remove any line referencing the extension in composer.local.json (usually in the "extra → merge-plugin → include" section)
  1. Remove the extension's directory in install-dir/extensions/

Usari Git pi scarricari li skin di MediaWiki

Lista di ntirfacci nta git

MediaWiki 1.24 e succissivi nun nclùdinu li skin ntô dowload cu Git.

Segui midèsima prucidura di l'estinzioni (discrivuta ntâ sizzioni pricidenti), ma utilizzannu skins nveci di extensions nta tutti li URL e pircursi.

Li struzzioni dittagghiati pâ nstallazzioni sunnu dispunìbbili nta ogniduna dê pàggini dê skin ccà nta MediaWiki.org p'esempiu lèggiti Skin:Vector#Installation. Li struzzioni pi tutti l'àutri skin sunnu anàlughi.

Talìa puru

Appendix

The Revision as of 14:26, 21 March 2019 changed the standard of linking to gerrit.wikimedia.org:

from:

gerrit.wikimedia.org/r/p/mediawiki

to:

gerrit.wikimedia.org/r/mediawiki