summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorZ.J. van de Weg <git@zjvandeweg.nl>2017-08-07 14:21:28 +0200
committerZ.J. van de Weg <git@zjvandeweg.nl>2017-08-07 15:09:14 +0200
commit2e6aa4f25e14fa7e57ea9f271e302e291ecc9e05 (patch)
tree4ff6c04b4871ec10ebe563c1d055a77ac589c495 /doc
parentaae947cb1c1252a642e0464c61132ec2e965eb80 (diff)
downloadgitlab-ce-2e6aa4f25e14fa7e57ea9f271e302e291ecc9e05.tar.gz
After merge cleanup
Diffstat (limited to 'doc')
-rw-r--r--doc/development/rake_tasks.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/development/rake_tasks.md b/doc/development/rake_tasks.md
index 42bb5e8619c..bfd80aab6a4 100644
--- a/doc/development/rake_tasks.md
+++ b/doc/development/rake_tasks.md
@@ -146,3 +146,20 @@ If new emoji are added, the spritesheet may change size. To compensate for
such changes, first generate the `emoji.png` spritesheet with the above Rake
task, then check the dimensions of the new spritesheet and update the
`SPRITESHEET_WIDTH` and `SPRITESHEET_HEIGHT` constants accordingly.
+
+## Updating project templates
+
+Starting a project from a template needs this project to be exported. On a
+up to date master branch with run:
+
+```
+gdk run db
+# In a new terminal window
+bundle exec rake gitlab:update_project_templates
+git checkout -b update-project-templates
+git add vendor/project_templates
+git commit
+git push -u origin update-project-templates
+```
+
+Now create a merge request and merge that to master.