diff options
author | Z.J. van de Weg <git@zjvandeweg.nl> | 2017-08-07 14:21:28 +0200 |
---|---|---|
committer | Z.J. van de Weg <git@zjvandeweg.nl> | 2017-08-07 15:09:14 +0200 |
commit | 2e6aa4f25e14fa7e57ea9f271e302e291ecc9e05 (patch) | |
tree | 4ff6c04b4871ec10ebe563c1d055a77ac589c495 /doc | |
parent | aae947cb1c1252a642e0464c61132ec2e965eb80 (diff) | |
download | gitlab-ce-2e6aa4f25e14fa7e57ea9f271e302e291ecc9e05.tar.gz |
After merge cleanup
Diffstat (limited to 'doc')
-rw-r--r-- | doc/development/rake_tasks.md | 17 |
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. |