GITR

(★ 12)

Global Impurity Transport

File Explorer

  • .gitignore
  • CMakeLists.txt
  • LICENSE
  • README.md

# 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

View Details ▼

Homebrew - a package manager for macOS and Linux.
Some subcommands such as `install` have their own usage documentation.

brew install {{formula|cask}}

Install the latest stable version of a formula or cask:

brew list

List all installed formulae and casks:

brew upgrade {{formula|cask}}

Upgrade an installed formula or cask (if none is given, all installed formulae/casks are upgraded):

🔍

podman pull

View Details ▼

Pull images from a container registry.

podman pull {{image}}:{{tag}}

Pull a specific container image:

podman pull {{[-q|--quiet]}} {{image}}:{{tag}}

Pull a container image in quiet mode:

podman pull {{[-a|--all-tags]}} {{image}}

Pull all tags of a container image:

🔍

podman

View Details ▼

Simple management tool for pods, containers, and images.
Podman provides a Docker-CLI comparable command-line. Simply put: `alias docker=podman`.

podman ps {{[-a|--all]}}

List all containers (both running and stopped):

podman run --name {{container_name}} {{image}}

Create a container from an image, with a custom name:

podman {{start|stop}} {{container_name}}

Start or stop an existing container:

// repository documentation