Skip to content

Commit

Permalink
updating strata
Browse files Browse the repository at this point in the history
  • Loading branch information
anantnrg committed Mar 14, 2024
1 parent e152777 commit 7bff8af
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion docs/get-started/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,35 @@ and run this command to install it:

```bash
sudo make install
```
```

If this command finishes without any errors, then Strata has been installed successfully :tada:!

## Updating Strata
Strata is being constantly updated. New features are added and bugs are fixed. To update your local installation, follow these steps.

First `cd` into the directory where you initially clone the repo:

```bash
cd strata
```

Next, you need to configure Git to rebase the branch when pulling. To do this, run:

```bash
git config pull.rebase true
```

Now you can run:

```bash
git pull
```

This will fetch all the latest changes from the remote repo. Finally you can run

```bash
sudo make install
```

to recompile and install Strata with the latest changes

0 comments on commit 7bff8af

Please sign in to comment.