Skip to content
Snippets Groups Projects
Verified Commit 98451e13 authored by nfontrod's avatar nfontrod
Browse files

slides/slides.qmd: use new monot font + removing of icons

parent d09e07d9
Branches
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ date: last-modified
date-format: full
toc: true
mainfont: calibri
monofont: SauceCodePro Nerd Font
monofont: "Source Code Pro"
format:
revealjs:
center: false
......@@ -172,8 +172,8 @@ To use gblk in a project folder, it must have this minimal structure:
```bash
Project
├── .git
└── results
├── .git/
└── results/
```
The `results` folder is *mandatory* to use gblk.
......@@ -527,9 +527,9 @@ The `.borgignore` needs to be *at the root of the project directory*:
```bash
Project
├── .git
├── .borg
├── .borg/
├── .borgignore
└── results
└── results/
```
. . .
......@@ -719,15 +719,15 @@ gblk mount
This command creates a `.mount` containing all archives of the results folder:
```console
.mount
├── 964fec75f58829c9642c9c2b675a4e1282d0d266
│ └── results
│ ├── .gitignore
│ └── result.txt
└── df0eb55ce43fa48b652340183b5f9cc69daa2350
└── results
├── .gitignore
└── result.txt
.mount/
├── 964fec75f58829c9642c9c2b675a4e1282d0d266/
│ └── results/
│ ├── .gitignore
│ └── result.txt
└── df0eb55ce43fa48b652340183b5f9cc69daa2350/
└── results/
├── .gitignore
└── result.txt
```
. . .
......@@ -737,13 +737,13 @@ gblk mount --versions # version view
```
```console
.mount
└── results
├── .gitignore
│ └── .gitignore.00001
└── result.txt
├── result.00001.txt
└── result.00002.txt
.mount
└── results
├── .gitignore
│ └── .gitignore.00001
└── result.txt
├── result.00001.txt
└── result.00002.txt
```
<p><p>
......@@ -774,13 +774,13 @@ To mount the versions of a result file named `result.txt` corresponding to the t
$ gblk mount --last 2 -p results/result.txt # mounting the results/result.txt of the two last commits
```
```bash
.mount
├── 964fec75f58829c9642c9c2b675a4e1282d0d266
│ └── results
│ └── result.txt
└── df0eb55ce43fa48b652340183b5f9cc69daa2350
└── results
└── result.txt
.mount/
├── 964fec75f58829c9642c9c2b675a4e1282d0d266/
│ └── results/
│ └── result.txt
└── df0eb55ce43fa48b652340183b5f9cc69daa2350/
└── results/
└── result.txt
```
If two files are recovered this way, we can add the `--diff` option to the previous command to display the changes between those files:
......@@ -888,11 +888,11 @@ git add src/script.sh && git commit -m "add image"
The results folder now look like this:
```sh
results
├── .gitignore
├── img.png
├── new.txt
└── result.txt
results
├── .gitignore
├── img.png
├── new.txt
└── result.txt
```
Now let's change the last line of the script:
......@@ -1360,10 +1360,10 @@ gblk clone [HOSTNAME:]PATH [--compression] [--hooks]
```sh
PATH
├── archive_list
├── config
├── data
└── README
├── archive_list
├── config
├── data/
└── README
```
. . .
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment