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
2020-10-05Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc32GitLab Bot
2020-07-20Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-06-18Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot
2020-05-20Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot
2020-04-20Add latest changes from gitlab-org/gitlab@12-10-stable-eeGitLab Bot
2020-04-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-03Add 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-09Update rails project templateDaniel Gruesso
2019-03-21Resolve "Android template is missing .gitlab-ci.yml"Jason Lenny
2019-03-07Add Android templateJason Lenny
2019-03-07Resolve "Project template for iOS"Jason Lenny
2019-03-06Revert previous commit since it isn't neededJason Lenny
This reverts commit 669d84356771682961ac6c416c3cbdb983ec0cd2
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.
2018-06-29Add pipeline stages position clean-up migrationGrzegorz Bizon
2018-05-04Resolve "Reconcile project templates with Auto DevOps"Fabio Busatto
2018-04-25Cleanup after adding MR diff's commit_count (try 2)Jan Provaznik
* processes any pending records which are not migrated yet * bumps import_export version because of new commits_count attribute * removes commits_count fallback method
2018-03-08Revert "Cleanup after adding MR diff's commit_count"Jan Provaznik
This reverts commit 0b7d10851456018328da137beeca931767b4fd0a.
2018-03-05Cleanup after adding MR diff's commit_countJan Provaznik
* processes any pending records which are not migrated yet * bumps import_export version because of new commits_count attribute * removes commits_count fallback method
2018-01-06Bump import/export version in project templatesGrzegorz Bizon
2017-11-28Remove serialised diff and commit columnsSean McGivern
The st_commits and st_diffs columns on merge_request_diffs historically held the YAML-serialised data for a merge request diff, in a variety of formats. Since 9.5, these have been migrated in the background to two new tables: merge_request_diff_commits and merge_request_diff_files. That has the advantage that we can actually query the data (for instance, to find out how many commits we've stored), and that it can't be in a variety of formats, but must match the new schema. This is the final step of that journey, where we drop those columns and remove all references to them. This is a breaking change to the importer, because we can no longer import diffs created in the old format, and we cannot guarantee the export will be in the new format unless it was generated after this commit.
2017-09-07Update rails template to include postgresZeger-Jan van de Weg
2017-09-07Update project templates to new import versionZeger-Jan van de Weg
If the import version changes, we need to update a few project templates to match this new version. In a seperate commit I'll update the docs to reflect this.
2017-08-23Update templates to include header in the READMEZeger-Jan van de Weg
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-14Update rails tempalte to not contain gitlab-testZeger-Jan van de Weg
[ci skip]
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.