Command Reference

Quick reference for common CLI commands used in EBRAINS development.

Overview

This section provides quick-lookup command references extracted from EBRAINS tutorials. Each reference page contains:

  • Command syntax and options
  • Common usage examples
  • Best practices
  • Troubleshooting tips
  • Links to related tutorials

Git Commands

Version control with standardized EBRAINS conventions.

Quick Example:

Docker Commands

Container management with EBRAINS Harbor registry.

Quick Example:

npm & Nx Commands

Package management and monorepo development.

Quick Example:

Quick Command Lookup

Most Common Commands

TaskCommand
Clone repositorygit clone <url>
Create branchgit checkout -b feat/18
Commit changesgit commit -m "type(scope): message"
Push branchgit push origin feat/18
Create taggit tag -a v1.0.0 -m "Release"
Build Dockerdocker build -t myapp:1.0.0 .
Push Dockerdocker push docker-registry.ebrains.eu/project/image:tag
Install depsnpm install
Generate appnpx nx generate @nx/react:application my-app
Serve appnx serve my-app
Build appnx build my-app
Test appnx test my-app

Related Tutorials

Learn these commands in context:

External Resources