Skip to content

Quick Start

This guide walks you through installing Cinch, authenticating, and moving your first clip end-to-end.

  1. Install the CLI

    Terminal window
    curl -fsSL https://cinchcli.com/install.sh | sh

    This installs the cinch binary to /usr/local/bin.

    Verify the install:

    Terminal window
    cinch version
  2. Sign in

    Terminal window
    cinch auth login

    A browser window opens. Sign in with GitHub or Google.

  3. Push your first clip

    On machine A:

    Terminal window
    echo "hello from $(hostname)" | cinch push
    # → ✓ Pushed 28 B
  4. Pull it on the other end

    On machine B (also signed in):

    Terminal window
    cinch pull
    # → hello from my-server

    Or pipe directly to the clipboard:

    Terminal window
    cinch pull | pbcopy # macOS
    cinch pull | xclip # Linux (X11)
  5. Pair a remote machine (optional)

    To set up cinch on a remote server in one command — SSH in, install, and pair:

    Terminal window
    cinch pair user@remotehost