Added adding and comitting

This commit is contained in:
Bastian 2020-01-09 13:09:47 +01:00
parent bc35654807
commit b99624b27f
1 changed files with 2 additions and 0 deletions

View File

@ -111,11 +111,13 @@ Or you can add an SSH key
## Saving changes ## Saving changes
Adding files to commit
```shell ```shell
git add file1 file2 git add file1 file2
git add * git add *
``` ```
Committing files with commit message
```shell ```shell
git commit -m "your commit message" git commit -m "your commit message"
``` ```