Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-12-22 21:10:05 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-12-22 21:10:05 +0300
commit9a14667521070786dbf3e61409a50ef6ef72e7ff (patch)
tree3732894d9b33af16e0128d498953505acc489e47 /doc/university/training
parentd72be033dbc66b5e77b49f050b4f87e5df57c873 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/university/training')
-rw-r--r--doc/university/training/topics/getting_started.md2
-rw-r--r--doc/university/training/topics/unstage.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/university/training/topics/getting_started.md b/doc/university/training/topics/getting_started.md
index f5c91b94813..fd600624a25 100644
--- a/doc/university/training/topics/getting_started.md
+++ b/doc/university/training/topics/getting_started.md
@@ -25,7 +25,7 @@ comments: false
- To instantiate a central repository a `--bare` flag is required.
- Bare repositories don't allow file editing or committing changes.
-- Create a bare repo with:
+- Create a bare repository with:
```shell
git init --bare project-name.git
diff --git a/doc/university/training/topics/unstage.md b/doc/university/training/topics/unstage.md
index 7e7530aba75..30d26854135 100644
--- a/doc/university/training/topics/unstage.md
+++ b/doc/university/training/topics/unstage.md
@@ -19,7 +19,7 @@ comments: false
git checkout -- <file>
```
-- To remove a file from disk and repo use `git rm` and to remove a directory use the `-r` flag:
+- To remove a file from disk and repository, use `git rm`. To remove a directory, use the `-r` flag:
```shell
git rm '*.txt'