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
path: root/doc
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-03-05 18:52:41 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-03-05 18:52:41 +0400
commit0c06b7fe20594c1f37bc7bee4ba12f22d2aaa46f (patch)
treea398871fbe6360d7592962328df1765b7fad5eeb /doc
parent3d45d300d89afe07bd6947476017027647f7dc86 (diff)
parentc13f9adab8199d35b6f04e87be767655002a7725 (diff)
Merge pull request #3106 from davidosomething/patch-1
Update doc/install/databases.md
Diffstat (limited to 'doc')
-rw-r--r--doc/install/databases.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/install/databases.md b/doc/install/databases.md
index 61882602bba..2c4fb9dbfff 100644
--- a/doc/install/databases.md
+++ b/doc/install/databases.md
@@ -12,7 +12,7 @@ GitLab supports the following databases:
sudo apt-get install -y mysql-server mysql-client libmysqlclient-dev
# Login to MySQL
- $ mysql -u root -p
+ mysql -u root -p
# Create a user for GitLab. (change $password to a real password)
mysql> CREATE USER 'gitlab'@'localhost' IDENTIFIED BY '$password';