GitXplorerGitXplorer
G

gitbook-cli

public
717 stars
216 forks
87 issues

Commits

List of commits on branch master.
Verified
d36a41e1c4fe1e68fec2a4a404396d84fec766a4

Add community link

aaddisonschultz committed 2 years ago
Verified
89e6723324bf0579038b13160e8897e51df1232b

Fix link

aaddisonschultz committed 2 years ago
Verified
6d9b3b894b5da9aaf94027b8661fdd522bbb779d

Merge pull request #122 from GitbookIO/add/deprecation

aaddisonschultz committed 2 years ago
Unverified
3ea81c029a3468e4ee1e96dfa3f192b81e73e0f6

typo

aaddisonschultz committed 2 years ago
Unverified
98da859c69fc4042d6d1a053380bbf7b2c0e7758

Add deprecation

aaddisonschultz committed 2 years ago
Unverified
aa9b1f85bca75c0db65b85bedce18ced957acae6

Bump version to 2.3.2

AAaronO committed 7 years ago

README

The README file for this repository.

⚠️ Deprecation warning:

As the efforts of the GitBook team are focused on the GitBook.com platform, the CLI is no longer under active development.
All content supported by the CLI are mostly supported by our GitBook.com / GitHub integration.

Content hosted on the legacy.gitbook.com will continue working until further notice. For differences with the new version, > check out our documentation.

Join our GitHub community to stay up to date with the latest news at GitBook.

gitbook-cli

NPM version Linux Build Status Windows Build status

The GitBook command line interface.

Install this globally and you'll have access to the gitbook command anywhere on your system.

$ npm install -g gitbook-cli

Note: The purpose of the gitbook command is to load and run the version of GitBook you have specified in your book (or the latest one), irrespective of its version. The GitBook CLI only support versions >=2.0.0 of GitBook.

gitbook-cli store GitBook's versions into ~/.gitbook, you can set the GITBOOK_DIR environment variable to use another directory.

How to install it?

$ npm install -g gitbook-cli

How to use it?

Run GitBook

Run command gitbook build, gitbook serve (read GitBook documentation for details).

List all available commands using:

$ gitbook help

Specify a specific version

By default, GitBook CLI will read the gitbook version to use from the book configuration, but you can force a specific version using --gitbook option:

$ gitbook build ./mybook --gitbook=2.0.1

and list available commands in this version using:

$ gitbook help --gitbook=2.0.1

Manage versions

List installed versions:

$ gitbook ls

List available versions on NPM:

$ gitbook ls-remote

Install a specific version:

$ gitbook fetch 2.1.0

# or a pre-release

$ gitbook fetch beta

Update to the latest version

$ gitbook update

Uninstall a specific version

$ gitbook uninstall 2.0.1

Use a local folder as a GitBook version (for developement)

$ gitbook alias ./mygitbook latest