Open main menu

Changes

adds simple script for fetching all git extensions
=== Extension and Skin Upgrades ===
Your MediaWiki site will contain many extensions to provide extra functionality. You also have one or more skins installed. Those need to be upgraded independently since they are not distributed with the core. The [[Special:Version ]] page will list the ones in use, so go through the list one at a time and check for upgrades. If you manage extensions with git but not as submodules, you can fetch the latest updates to the code with something like <source lang="bash">cd extensionsbase=`pwd`; for ext in `find . -type d -name .git | sed 's/.git//' `; do cd $ext; echo "fetching $ext"; git fetch; cd $base; done</source>  
=== Debug ===
4,558

edits