Files
dolt/README.md
2019-01-07 17:28:43 -08:00

1.1 KiB

Installing the dolt command line

Prerequisites

  • Clone this repo and pull the latest
  • Install go: https://golang.org/doc/install
  • Set the environment variable NOMS_VERSION_NEXT=1
  • run: git config --global --add url."ssh://git@github.com".insteadOf "https://github.com"
  • add the go binary installation directory to your Path variable
    • ~/go/bin on OSX
    • %USERPROFILE%/go/bin

Installation

  • Open a command line in the dolt/go directory
  • run: go install github.com/liquidata-inc/ld/dolt/go/cmd/dolt

First commands

  • dolt config --global --add user.email YOU@liquidata.co
  • dolt config --global --add user.name

Setting up a repo

  • make a new directory with nothing in it
  • From the new directory run dolt init

Docs