diff options
author | David <accounts@davidosomething.com> | 2013-02-27 17:09:14 -0500 |
---|---|---|
committer | David <accounts@davidosomething.com> | 2013-02-27 17:09:14 -0500 |
commit | c13f9adab8199d35b6f04e87be767655002a7725 (patch) | |
tree | 59b6c03b92553149b764cf880fba6b9c4984cde6 | |
parent | 863d297ede6989f00ab0a5af28efdf99a51f805a (diff) | |
download | gitlab-ce-c13f9adab8199d35b6f04e87be767655002a7725.tar.gz |
Update doc/install/databases.md
Remove prompt $ from code line for uniformity
-rw-r--r-- | doc/install/databases.md | 2 |
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'; |