Electrode Native
v0.41
v0.41
  • Introduction
  • INTRODUCTION
    • Overview
      • What is Electrode Native
      • Why use Electrode Native
      • What is a MiniApp
      • Electrode Native workflow
      • Native dependencies management
      • JS/Native communication
      • Requirements
      • Upgrading Electrode Native
      • Contributing
  • REFERENCE
    • Bundle Store
    • Composite
    • Container
      • What's inside
      • Publication
      • Integration
      • Initialization
      • Launching MiniApps
    • Cauldron
      • Structure
      • Setup
      • Compatibility checks
      • Guidelines
    • Manifest
      • Override
      • Native Modules
      • Configurable Modules
    • Runner
    • APIs
      • Project Generation
      • Implementation
      • Versioning
      • Guidelines
    • Bridge
      • Message Types
      • Communication
      • Leveraging APIs
    • CLI
      • Global CLI
      • Local CLI
    • GLOSSARY
  • GUIDES
    • Debugging multiple MiniApps
  • CLI COMMANDS
    • add
    • bundlestore
      • create
      • delete
      • upload
      • use
    • binarystore
      • add
      • get
      • remove
    • code-push
      • patch
      • release
      • promote
    • compat-check
    • create-api-impl
    • create-api
    • create-composite
    • create-container
    • create-plugin-config
    • publish-container
    • transform-container
    • create-miniapp
    • link
    • regen-api
    • regen-api-impl
    • run-android
    • run-ios
    • start
    • unlink
    • upgrade-miniapp
    • cauldron add
      • file
      • jsapiimpls
      • miniapps
      • nativeapp
    • cauldron config
      • get
    • cauldron del
      • file
      • jsapiimpls
      • miniapps
      • nativeapp
    • cauldron get
      • config
      • dependency
      • nativeapp
    • cauldron repo
      • add
      • clear
      • current
      • list
      • remove
      • use
    • cauldron update
      • file
      • jsapiimpls
      • miniapps
      • nativeapp
    • cauldron batch
    • cauldron regen-container
    • cauldron upgrade
    • cauldron why
    • github
      • github create-ref
      • github delete-ref
      • github align-dependencies
    • platform
      • plugins
        • list
        • search
      • config
        • set
        • get
        • del
        • list
      • install
      • versions
      • uninstall
      • use
Powered by GitBook
On this page
  • Description
  • Syntax
  1. CLI COMMANDS
  2. github

github create-ref

PreviousgithubNextgithub delete-ref

Last updated 4 years ago

must be met in order to execute this command.

Description

  • Creates a new remote branch or tag in all MiniApps and/or JS API Implementations GitHub repositories.

Syntax

ern github create-ref

Options

--branch <name>

  • Name of the new branch to create.

  • Default Interactive prompt to input a branch name.

--tag <name>

  • Name of the new tag to create.

  • Default Interactive prompt to input a tag name.

--descriptor <descriptor>

  • A full native application descriptor (native application version) from which to look for the MiniApps/JS API Implementations to branch/tag.

  • Default Interactive prompt to select a descriptor.

--fromBranch

  • Creates the new branch/tag from the branches of the MiniApps/JS API Implementations listed in the target descriptor.

  • Default Interactive prompt to select --fromBranch/--fromTagOrSha option to be used.

--fromTagOrSha

  • Creates the new branch/tag from the current tags or SHAs of the MiniApps/JS API Implementations listed in the target descriptor.

  • Default Interactive prompt to select --fromBranch/--fromTagOrSha option to be used.

--jsApiImplsOnly

  • Only create new branch/tag for JS API Implementations.

  • Default Creates branch/tag for MiniApps and JS API Implementations.

--miniAppsOnly

  • Only create new branch/tag for MiniApps.

  • Default Creates branch/tag for MiniApps and JS API Implementations.

github commands prerequisites