summaryrefslogtreecommitdiff
path: root/doc/gitlab-basics/command-line-commands.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/gitlab-basics/command-line-commands.md')
-rw-r--r--doc/gitlab-basics/command-line-commands.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/gitlab-basics/command-line-commands.md b/doc/gitlab-basics/command-line-commands.md
index e259aeef37b..1933b432138 100644
--- a/doc/gitlab-basics/command-line-commands.md
+++ b/doc/gitlab-basics/command-line-commands.md
@@ -7,14 +7,14 @@ type: howto, reference
# Edit files through the command line
-When [working with Git from the command line](start-using-git.md), you will need to
+When [working with Git from the command line](start-using-git.md), you need to
use more than just the Git commands. There are several basic commands that you should
learn, in order to make full use of the command line.
## Start working on your project
To work on a Git project locally (from your own computer), with the command line,
-first you will need to [clone (copy) it](start-using-git.md#clone-a-repository) to
+first you need to [clone (copy) it](start-using-git.md#clone-a-repository) to
your computer.
## Working with files on the command line
@@ -57,16 +57,16 @@ nano README.md
### Remove a file or directory
-It is easy to delete (remove) a file or directory, but be careful:
+It's easy to delete (remove) a file or directory, but be careful:
-DANGER: **Danger:**
+DANGER: **Warning:**
This will **permanently** delete a file.
```shell
rm NAME-OF-FILE
```
-DANGER: **Danger:**
+DANGER: **Warning:**
This will **permanently** delete a directory and **all** of its contents.
```shell
@@ -96,7 +96,7 @@ for example) . Execute the same full command with:
Not all commands can be executed from a basic user account on a computer, you may
need administrator's rights to execute commands that affect the system, or try to access
protected data, for example. You can use `sudo` to execute these commands, but you
-will likely be asked for an administrator password.
+might be asked for an administrator password.
```shell
sudo RESTRICTED-COMMAND
@@ -108,8 +108,8 @@ damage to your data or system.
## Sample Git taskflow
-If you are completely new to Git, looking through some [sample taskflows](https://rogerdudler.github.io/git-guide/)
-will help you understand the best practices for using these commands as you work.
+If you're completely new to Git, looking through some [sample taskflows](https://rogerdudler.github.io/git-guide/)
+may help you understand the best practices for using these commands as you work.
<!-- ## Troubleshooting