Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/steveklabnik/jujutsu-tutorial

trying to figure out this jujutsu thing
https://github.com/steveklabnik/jujutsu-tutorial

Last synced: 4 days ago
JSON representation

trying to figure out this jujutsu thing

Awesome Lists containing this project

README

        

# Steve's Jujutsu tutorial

[Read it here](https://steveklabnik.github.io/jujutsu-tutorial/).

## Requirements

Building the book requires [mdBook]. To get it:

[mdBook]: https://github.com/rust-lang/mdBook

```bash
$ cargo install mdbook
```

Or you can also install via Homebrew:

```bash
$ brew install mdbook
```

## Building

To build the book, type:

```bash
$ mdbook build
```

The output will be in the `book` subdirectory. To check it out, open it in
your web browser.

_Firefox:_
```bash
$ firefox book/index.html # Linux
$ open -a "Firefox" book/index.html # OS X
$ Start-Process "firefox.exe" .\book\index.html # Windows (PowerShell)
$ start firefox.exe .\book\index.html # Windows (Cmd)
```

_Chrome:_
```bash
$ google-chrome book/index.html # Linux
$ open -a "Google Chrome" book/index.html # OS X
$ Start-Process "chrome.exe" .\book\index.html # Windows (PowerShell)
$ start chrome.exe .\book\index.html # Windows (Cmd)
```