diff options
author | Achilleas Pipinellis <axilleas@axilleas.me> | 2016-01-22 09:34:45 +0100 |
---|---|---|
committer | Achilleas Pipinellis <axilleas@axilleas.me> | 2016-01-22 09:34:45 +0100 |
commit | 831eb9468d5f82bd7d0c4e51e6ce87ca86aeca8c (patch) | |
tree | 739f342da21ad303605f997eb578ef5ce18d256d /doc/development | |
parent | b4d61ac46babc04f67bb191c477dddc88e10ad45 (diff) | |
parent | 8be4e545635f0f01993290b4577dbe38e74c6bbf (diff) | |
download | gitlab-ce-831eb9468d5f82bd7d0c4e51e6ce87ca86aeca8c.tar.gz |
Merge branch 'master' into doc_refactor_commits_api
Diffstat (limited to 'doc/development')
-rw-r--r-- | doc/development/doc_styleguide.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/development/doc_styleguide.md b/doc/development/doc_styleguide.md index 0bd32b78201..caaa4032db2 100644 --- a/doc/development/doc_styleguide.md +++ b/doc/development/doc_styleguide.md @@ -103,6 +103,23 @@ Inside the document: `_**Note:** This feature was introduced in GitLab EE 8.3_`. Otherwise, leave this mention out +## References + +- **GitLab Restart:** + There are many cases that a restart/reconfigure of GitLab is required. To + avoid duplication, link to the special document that can be found in + [`doc/administration/restart_gitlab.md`][doc-restart]. Usually the text will + read like: + + ``` + Save the file and [reconfigure GitLab](../administration/restart_gitlab.md) + for the changes to take effect. + ``` + If the document you are editing resides in a place other than the GitLab CE/EE + `doc/` directory, instead of the relative link, use the full path: + `http://doc.gitlab.com/ce/administration/restart_gitlab.html`. + Replace `reconfigure` with `restart` where appropriate. + ## API Here is a list of must-have items. Use them in the exact order that appears @@ -229,3 +246,4 @@ curl -X PUT -H "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" -d "restricted_signup_domai [cURL]: http://curl.haxx.se/ "cURL website" [single spaces]: http://www.slate.com/articles/technology/technology/2011/01/space_invaders.html [gfm]: http://doc.gitlab.com/ce/markdown/markdown.html#newlines "GitLab flavored markdown documentation" +[doc-restart]: ../administration/restart_gitlab.md "GitLab restart documentation" |