Welcome to mirror list, hosted at ThFree Co, Russian Federation.

create_code_task_service.rb « tasks_to_be_done « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc3b9366a661b45afc583df13b6328b2d473e255 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# frozen_string_literal: true

module TasksToBeDone
  class CreateCodeTaskService < BaseService
    protected

    def title
      'Create or import your code into your Project (Repository)'
    end

    def description
      <<~DESCRIPTION
        You've already created your Group and Project within GitLab; we'll quickly review this hierarchy below. Once you're within your project you can easily create or import repositories.

        **With GitLab Groups, you can:**

        * Create one or multiple Projects for hosting your codebase (repositories).
        * Assemble related projects together.
        * Grant members access to several projects at once.

        Groups can also be nested in subgroups.

        Read more about groups in our [documentation](https://docs.gitlab.com/ee/user/group/).

        **Within GitLab Projects, you can**

        * Use it as an issue tracker.
        * Collaborate on code.
        * Continuously build, test, and deploy your app with built-in GitLab CI/CD.

        You can also import an existing repository by providing the Git URL.

        * :book: [Read the documentation](https://docs.gitlab.com/ee/user/project/index.html).

        ## Next steps

        Create or import your first repository into the project you created:

        * [ ] Click **Projects** in the top navigation bar, then click **Your projects**.
        * [ ] Select the Project that you created, then select **Repository**.
        * [ ] Once on the Repository page you can select the **+** icon to add or import files.
        * [ ] You can review our full documentation on creating [repositories](https://docs.gitlab.com/ee/user/project/repository/) in GitLab.

        :tada: All done, you can close this issue!
      DESCRIPTION
    end

    def label_suffix
      'code'
    end
  end
end