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
AgeCommit message (Collapse)Author
2023-11-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-11-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-05-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-03-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-10-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-12-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-22Add frozen_string_literal to lib part 2Thong Kuah
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
2019-08-15Squash project templates on updateHordur Freyr Yngvason
As per https://gitlab.com/gitlab-org/gitlab-ce/issues/46043, project templates should be squashed before updating, so that repositories created from these templates don't include the full history of the backing repository.
2019-07-30Fix broken update_project_templates rake taskHordur Freyr Yngvason
This rake task had been broken for a while. This fixes the breakages, adds a test to help avoid future breakages, and adds a few ergonomic improvements to the task itself.
2019-03-07Add Android templateJason Lenny
2019-03-07Resolve "Project template for iOS"Jason Lenny
2019-02-27Add Project template for go-microJason Lenny
2019-02-25Merge branch '57794-project-template-for-net' of ↵Jason Lenny
https://gitlab.com/gitlab-org/gitlab-ce into 57794-project-template-for-net
2019-02-25Merge branch '57785-create-project-template-for-netlify' of ↵Jason Lenny
https://gitlab.com/gitlab-org/gitlab-ce into 57785-create-project-template-for-netlify
2019-02-07Add Pages templatesJason Lenny
Adds templates for the 5 most popular Pages templates to the new project menu. This does not add unique icons for the templates because that turned out more complicated than expected, and this feature is valuable without them.
2017-10-11Simplify project pageAnnabel Dunstone Gray
2017-08-15Add two more project templatesZ.J. van de Weg
Related to !13108. Mostly this is just running the rake task and changing the task a bit to catch cases like the project already existing or so. The rake task moves archives to the vendor/project_template directory, which are checked in too.
2017-08-07After merge cleanupZ.J. van de Weg
2017-08-01Rename GitLabProjectImporterService and misc fixesZ.J. van de Weg
First round of review, main changes: - templates.title is human readable, #name will be passed around - GitLabProjectImporterService has been renamed
2017-08-01Create rake task to create project templatesZ.J. van de Weg
First iteration, and some stuff is missing. But basically this rake task does a clone of a project we've pointed it to. Than creates a project on the GDK, which should be running in the background. This project is exported, after which we move that archive to the location we need it. We clean up by removing the generated project. The first idea was to export the project on .com too, however than we might run into ImportExport versions mismatch. This could've been circumvented by checkout out an older commit locally. This however is not needed yet, so we opted to not go this route yet, instead we will iterate on what we got.
2017-07-28Allow projects to be started from a templateZ.J. van de Weg
Started implementation for the first iteration of gitlab-org/gitlab-ce#32420. This will allow users to select a template to start with, instead of an empty repository in the project just created. Internally this is basically a small extension of the ImportExport GitLab projects we already support. We just import a certain import tar archive. This commits includes the first one: Ruby on Rails. In the future more will be added.