Tutorials

This page contains a collection of tutorials to demonstrate how to use Flow.

Pre-requisites

  • Make sure you have installed Flow and its dependencies. You can find the installation instructions in the installation guide.

Table of Contents

Basic Repo

  1. Create a new Flow repository:
    flow init my-repo
    
  2. Create a file named hello.txt in the root of your repository with the following content:
    Hello, world!
    
  3. Commit the file:
    flow commit -m "Add hello.txt"