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