1
0
Fork 0
mirror of https://codeberg.org/Mo8it/How_To_Linux.git synced 2024-10-18 09:42:38 +00:00

Merge branch 'main' of codeberg.org:mo8it/dev-tools

This commit is contained in:
Mo 2023-08-16 23:46:01 +02:00
commit a208f60f38

View file

@ -12,6 +12,22 @@ The participants of the course will add a description to each of these Git subco
## git add
This command stages one or more files for the next commit, adding them to everything that is committed.
Examples are:
```bash
git add "example.txt"
```
or
```bash
git add --all
```
if you want to stage all changes.
## git commit
## git log