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
- Create a new Flow repository:
flow init my-repo
- Create a file named hello.txt in the root of your repository with the following content:
Hello, world!
- Commit the file:
flow commit -m "Add hello.txt"