diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-05-20 14:34:42 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-05-20 14:34:42 +0000 |
commit | 9f46488805e86b1bc341ea1620b866016c2ce5ed (patch) | |
tree | f9748c7e287041e37d6da49e0a29c9511dc34768 /doc/university | |
parent | dfc92d081ea0332d69c8aca2f0e745cb48ae5e6d (diff) | |
download | gitlab-ce-9f46488805e86b1bc341ea1620b866016c2ce5ed.tar.gz |
Add latest changes from gitlab-org/gitlab@13-0-stable-ee
Diffstat (limited to 'doc/university')
-rw-r--r-- | doc/university/support/README.md | 6 | ||||
-rw-r--r-- | doc/university/training/end-user/README.md | 2 | ||||
-rw-r--r-- | doc/university/training/topics/agile_git.md | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/doc/university/support/README.md b/doc/university/support/README.md index a60107dc4e1..5e824bcb6f9 100644 --- a/doc/university/support/README.md +++ b/doc/university/support/README.md @@ -62,14 +62,14 @@ Sometimes we need to upgrade customers from old versions of GitLab to latest, so - Users - Groups - Projects - - [Backup using our Backup Rake task](../../raketasks/backup_restore.md#creating-a-backup-of-the-gitlab-system) + - [Back up using our backup Rake task](../../raketasks/backup_restore.md#back-up-gitlab) - [Upgrade to 5.0 source using our Upgrade documentation](https://gitlab.com/gitlab-org/gitlab/blob/master/doc/update/4.2-to-5.0.md) - [Upgrade to 5.1 source](https://gitlab.com/gitlab-org/gitlab/blob/master/doc/update/5.0-to-5.1.md) - [Upgrade to 6.0 source](https://gitlab.com/gitlab-org/gitlab/blob/master/doc/update/5.1-to-6.0.md) - [Upgrade to 7.14 source](https://gitlab.com/gitlab-org/gitlab/blob/master/doc/update/6.x-or-7.x-to-7.14.md) - [Perform the MySQL to PostgreSQL migration to convert your backup](../../update/mysql_to_postgresql.md) - [Upgrade to Omnibus 7.14](https://docs.gitlab.com/omnibus/update/README.html#upgrading-from-a-non-omnibus-installation-to-an-omnibus-installation) - - [Restore backup using our Restore Rake task](../../raketasks/backup_restore.md#restore) + - [Restore backup using our Restore Rake task](../../raketasks/backup_restore.md#restore-gitlab) - [Upgrade to latest EE](https://about.gitlab.com/update/) - (GitLab inc. only) Acquire and apply a license for the Enterprise Edition product, ask in #support - Perform a downgrade from [EE to CE](../../downgrade_ee_to_ce/README.md) @@ -103,7 +103,7 @@ Our integrations add great value to GitLab. User questions often relate to integ ### Learn about the Support process -Zendesk is our Support Centre and our main communication line with our Customers. We communicate with customers through several other channels too +Zendesk is our Support Center and our main communication line with our Customers. We communicate with customers through several other channels too - Familiarize yourself with ZenDesk: - [UI Overview](https://support.zendesk.com/hc/en-us/articles/203661806-Introduction-to-the-Zendesk-agent-interface) diff --git a/doc/university/training/end-user/README.md b/doc/university/training/end-user/README.md index 5fc65bb8a58..0465f48bb34 100644 --- a/doc/university/training/end-user/README.md +++ b/doc/university/training/end-user/README.md @@ -278,7 +278,7 @@ git rm '*.txt' git rm -r <dirname> ``` -If we want to remove a file from the repository but keep it on disk, say we forgot to add it to our .gitignore file then use `--cache`: +If we want to remove a file from the repository but keep it on disk, say we forgot to add it to our `.gitignore` file then use `--cache`: ```shell git rm <filename> --cache diff --git a/doc/university/training/topics/agile_git.md b/doc/university/training/topics/agile_git.md index 6434b710159..c5634bec27b 100644 --- a/doc/university/training/topics/agile_git.md +++ b/doc/university/training/topics/agile_git.md @@ -20,7 +20,7 @@ Branching in an Agile environment usually happens around user stories with one or more developers working on it. If more than one developer then another branch for each developer is also used -with their initials, and US id. +with their initials, and US ID. After its tested merge into master and remove the branch. |