Add alerts to GitLab basics

This commit is contained in:
Achilleas Pipinellis 2019-06-27 17:53:48 +00:00 committed by Marcia Ramos
parent 7a6a8633f0
commit 84eb286a0b
1 changed files with 14 additions and 2 deletions

View File

@ -29,7 +29,9 @@ git clone PASTE HTTPS OR SSH HERE
A clone of the project will be created in your computer.
>**Note:** If you clone your project via a URL that contains special characters, make sure that characters are URL-encoded.
NOTE: **Note:**
If you clone your project via a URL that contains special characters, make sure
that characters are URL-encoded.
### Go into a project directory to work in it
@ -86,12 +88,18 @@ cat README.md
### Remove a file
DANGER: **Danger:**
This will permanently delete the file.
```
rm NAME-OF-FILE
```
### Remove a directory and all of its contents
DANGER: **Danger:**
This will permanently delete the directory and all of its contents.
```
rm -r NAME-OF-DIRECTORY
```
@ -113,9 +121,13 @@ history
You will be asked for an administrators password.
```
sudo
sudo COMMAND
```
CAUTION: **Caution:**
Be careful of the commands you run with `sudo`. Certain commands may cause
damage to your data and system.
### Show which directory I am in
```