etlegacy

(★ 709)

ET: Legacy is an open source project based on the code of Wolfenstein: Enemy Territory which was released in 2010 under the terms of the GPLv3 license.

File Explorer

  • .editorconfig
  • .gitattributes
  • .gitignore
  • .gitmodules
  • .ignore
  • Brewfile
  • build.gradle
  • CHANGELOG.yml
  • CMakeLists.txt
  • CMakeSettings.json
  • CONTRIBUTING.md
  • COPYING.txt
  • Doxyfile
  • easybuild.bat
  • easybuild.sh
  • etl.keystore
  • etlkey.jks
  • gradle.properties
  • gradlew
  • gradlew.bat
  • libs
  • pixi.lock
  • pixi.toml
  • README.md
  • release.bat
  • release.sh
  • SECURITY.md
  • settings.gradle
  • uncrustify.cfg
  • VERSION.txt

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

brew bundle

View Details ▼

Bundler for Homebrew, Homebrew Cask and the Mac App Store.

brew bundle

Install packages from a Brewfile at the current path:

brew bundle --file {{path/to/file}}

Install packages from a specific Brewfile at a specific path:

brew bundle dump

Create a Brewfile from all installed packages:

🔍

brew install

View Details ▼

Install a Homebrew formula or cask.

brew install {{formula|cask}}

Install a formula/cask:

brew install {{[-s|--build-from-source]}} {{formula}}

Build and install a formula from source (dependencies will still be installed from bottles):

brew install {{[-n|--dry-run]}} {{formula|cask}}

Download the manifest, print what would be installed but don't actually install anything:

🔍

cmake

View Details ▼

Cross-platform build automation system, that generates recipes for native build systems.

cmake {{path/to/project_directory}}

Generate a build recipe in the current directory with `CMakeLists.txt` from a project directory:

cmake --build {{path/to/build_directory}}

Use a generated recipe in a given directory to build artifacts:

cmake --install {{path/to/build_directory}} --strip

Install the build artifacts into `/usr/local/` and strip debugging symbols:

🔍

git clean

View Details ▼

Remove files not tracked by Git from the working tree.

git clean {{[-i|--interactive]}}

Interactively delete untracked files:

git clean {{[-n|--dry-run]}}

Show which files would be deleted without actually deleting them:

git clean {{[-f|--force]}}

Immediately force deletion of all untracked files:

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

git submodule

View Details ▼

Inspect, update, and manage submodules.

git submodule

View existing submodules and the checked-out commit for each one:

git submodule update --init --recursive

Install a repository's submodules (listed in `.gitmodules`):

git submodule add {{repository_url}}

Add a Git repository as a submodule of the current one:

🔍

nasm

View Details ▼

The Netwide Assembler, a portable 80x86 assembler.

nasm {{source.asm}}

Assemble `source.asm` into a binary file `source`, in the (default) raw binary format:

nasm -f {{format}} {{source.asm}} -o {{output_file}}

Assemble `source.asm` into a binary file `output_file`, in the specified format:

nasm -hf

List valid output formats (along with basic nasm help):

🔍

xcode-select

View Details ▼

Switch between different versions of Xcode and the included developer tools.
Also used to update the path to Xcode if it is moved after installation.

xcode-select --install

Install Xcode's command-line tools:

xcode-select --switch {{path/to/Xcode.app/Contents/Developer}}

Select a given path as the active developer directory:

xcode-select --switch {{path/to/Xcode_file.app}}

Select a given Xcode instance and use its developer directory as the active one:

🔍

share

View Details ▼

Make local resource/filesystem available for mounting by remote systems.

share

List all currently shared filesystems:

share -F nfs -o rw /{{path/to/directory}}

Share a directory with read/write access:

share -F nfs -o ro /{{path/to/directory}}

Share a directory with read-only access:

// repository documentation