31 KiB
svtter 翻译中
GitLab Workflow: An Overview
GitLab is a Git-based repository manager and a powerful complete application for software development.
With an "user-and-newbie-friendly" interface, GitLab allows you to work effectively, both from the command line and from the UI itself. It's not only useful for developers, but can also be integrated across your entire team to bring everyone into a single and unique platform.
The GitLab Workflow logic is intuitive and predictable, making the entire platform easy to use and easier to adopt. Once you do, you won't want anything else!
In this post
- GitLab Workflow
- GitLab Issue Tracker
- Code Review with GitLab
- Build, Test, and Deploy
- Feedback: Cycle Analytics
- Enhance
- Pro Tips
- GitLab WorkFlow Use-Case Scenario
- Conclusions
GitLab Workflow
The GitLab Workflow is a logical sequence of possible actions to be taken during the entire lifecycle of the software development process, using GitLab as the platform that hosts your code.
The GitLab Workflow takes into account the GitLab Flow, which consists of Git-based methods and tactics for version management, such as branching strategy, Git best practices, and so on.
With the GitLab Workflow, the goal is to help teams work cohesively and effectively from the first stage of implementing something new (ideation) to the last stage—deploying implementation to production. That's what we call "going faster from idea to production in 10 steps."
Stages of Software Development
The natural course of the software development process passes through 10 major steps; GitLab has built solutions for all of them:
- IDEA: Every new proposal starts with an idea, which usually come up in a chat. For this stage, GitLab integrates with Mattermost.
- ISSUE: The most effective way to discuss an idea is creating an issue for it. Your team and your collaborators can help you to polish and improve it in the issue tracker.
- PLAN: Once the discussion comes to an agreement, it's time to code. But wait! First, we need to prioritize and organize our workflow. For this, we can use the Issue Board.
- CODE: Now we're ready to write our code, once we have everything organized.
- COMMIT: Once we're happy with our draft, we can commit our code to a feature-branch with version control.
- TEST: With GitLab CI, we can run our scripts to build and test our application.
- REVIEW: Once our script works and our tests and builds succeeds, we are ready to get our code reviewed and approved.
- STAGING: Now it's time to deploy our code to a staging environment to check if everything worked as we were expecting or if we still need adjustments.
- PRODUCTION: When we have everything working as it should, it's time to deploy to our production environment!
- FEEDBACK: Now it's time to look back and check what stage of our work needs improvement. We use Cycle Analytics for feedback on the time we spent on key stages of our process.
To walk through these stages smoothly, it's important to have powerful tools to support this workflow. In the following sections, you'll find an overview of the toolset available from GitLab.
GitLab Issue Tracker
GitLab has a powerful issue tracker that allows you, your team, and your collaborators to share and discuss ideas, before and while implementing them.
Issues are the first essential feature of the GitLab Workflow. Always start a discussion with an issue; it's the best way to track the evolution of a new idea.
It's most useful for:
- Discussing ideas
- Submitting feature proposals
- Asking questions
- Reporting bugs and malfunction
- Obtaining support
- Elaborating new code implementations
Each project hosted by GitLab has an issue tracker. To create a new issue, navigate to your project's Issues > New issue, give it a title that summarizes the subject to be treated, and describe it using Markdown. Check the pro tips below to enhance your issue description.
The GitLab Issue Tracker presents extra functionalities to make it easier to organize and prioritize your actions, described in the following sections.
Confidential Issues
Whenever you want to keep the discussion presented in a issue within your team only, you can make that issue confidential. Even if your project is public, that issue will be preserved. The browser will respond with a 404 error whenever someone who is not a project member with at least Reporter level tries to access that issue's URL.
Due dates
Every issue enables you to attribute a due date to it. Some teams work on tight schedules, and it's important to have a way to setup a deadline for implementations and for solving problems. This can be facilitated by the due dates.
When you have due dates for multi-task projects—for example, a new release, product launch, or for tracking tasks by quarter—you can use milestones.
Assignee
Whenever someone starts to work on an issue, it can be assigned to that person. You can change the assignee as much as you need. The idea is that the assignee is responsible for that issue until he/she reassigns it to someone else to take it from there.
It also helps with filtering issues per assignee.
Labels
GitLab labels are also an important part of the GitLab flow. You can use them to categorize your issues, to localize them in your workflow, and to organize them by priority with Priority Labels.
Labels will enable you to work with the GitLab Issue Board, facilitating your plan stage and organizing your workflow.
New! You can also create Group Labels, which give you the ability to use the same labels per group of projects.
Issue Weight
You can attribute an Issue Weight to make it clear how difficult the implementation of that idea is. Less difficult would receive weights of 01-03, more difficult, 07-09, and the ones in the middle, 04-06. Still, you can get to an agreement with your team to standardize the weights according to your needs.
GitLab Issue Board
The GitLab Issue Board is a tool ideal for planning and organizing your issues according to your project's workflow.
It consists of a board with lists corresponding to its respective labels. Each list contains their corresponding labeled issues, displayed as cards.
The cards can be moved between lists, which will cause the label to be updated according to the list you moved the card into.
New! You can also create issues right from the Board, by clicking the button on the top of a list. When you do so, that issue will be automatically created with the label corresponding to that list.
New! We've recently introduced Multiple Issue Boards per project (GitLab Enterprise Edition only); it is the best way to organize your issues for different workflows.
Code Review with GitLab
After discussing a new proposal or implementation in the issue tracker, it's time to work on the code. You write your code locally and, once you're done with your first iteration, you commit your code and push to your GitLab repository. Your Git-based management strategy can be improved with the GitLab Flow.
First Commit
In your first commit message, you can add the number of the issue related to that commit message. By doing so, you create a link between the two stages of the development workflow: the issue itself and the first commit related to that issue.
To do so, if the issue and the code you're committing are both in the same project, you simply add #xxx
to the commit message, where xxx
is the issue number. If they are not in the same project, you can add the full URL to the issue (https://gitlab.com/<username>/<projectname>/issues/<xxx>
).
`git commit -m "this is my commit message. Ref #xxx"`
or
`git commit -m "this is my commit message. Related to https://gitlab.com/<username>/<projectname>/issues/<xxx>"`
Of course, you can replace gitlab.com
with the URL of your own GitLab instance.
Note: Linking your first commit to your issue is going to be relevant for tracking your process far ahead with GitLab Cycle Analytics. It will measure the time taken for planning the implementation of that issue, which is the time between creating an issue and making the first commit.
Merge Request
Once you push your changes to a feature-branch, GitLab will identify this change and will prompt you to create a Merge Request (MR).
Every MR will have a title (something that summarizes that implementation) and a description supported by Markdown. In the description, you can shortly describe what that MR is doing, mention any related issues and MRs (creating a link between them), and you can also add the issue closing pattern, which will close that issue(s) once the MR is merged.
For example:
`## Add new page
This MR creates a `readme.md` to this project, with an overview of this app.
Closes #xxx and https://gitlab.com/<username>/<projectname>/issues/<xxx>
Preview:
![preview the new page](#image-url)
cc/ @Mary @Jane @John`
When you create an MR with a description like the one above, it will:
- Close both issues
#xxx
andhttps://gitlab.com/<username>/<projectname>/issues/<xxx>
when merged - Display an image
- Notify the users
@Mary
,@Jane
, and@John
by e-mail
You can assign the MR to yourself until you finish your work, then assign it to someone else to conduct a review. It can be reassigned as many times as necessary, to cover all the reviews you need.
It can also be labeled and added to a milestone to facilitate organization and prioritization.
When you add or edit a file and commit to a new branch from the UI instead of from the command line, it's also easy to create a new merge request. Just mark the checkbox "start a new merge request with these changes" and GitLab will automatically create a new MR once you commit your changes.
Note: It's important to add the issue closing pattern to your MR in order to be able to track the process with GitLab Cycle Analytics. It will track the "code" stage, which measures the time between pushing a first commit and creating a merge request related to that commit.
New! We're currently developing Review Apps, a new feature that gives you the ability to deploy your app to a dynamic environment, from which you can preview the changes based on the branch name, per merge request. See a working example here.
WIP MR
A WIP MR, which stands for Work in Progress Merge Request, is a technique we use at GitLab to prevent that MR from getting merged before it's ready. Just add WIP:
to the beginning of the title of an MR, and it will not be merged unless you remove it from there.
When your changes are ready to get merged, remove the WIP:
pattern either by editing the issue and deleting manually, or use the shortcut available for you just below the MR description.
New! The WIP
pattern can be also quickly added to the merge request with the slash command /wip
. Simply type it and submit the comment or the MR description.
Review
Once you've created a merge request, it's time to get feedback from your team or collaborators. Using the diffs available on the UI, you can add inline comments, reply to them and resolve them.
You can also grab the link for each line of code by clicking on the line number.
The commit history is available from the UI, from which you can track the changes between the different versions of that file. You can view them inline or side-by-side.
New! If you run into merge conflicts, you can quickly solve them right for the UI, or even edit the file to fix them as you need:
Build, Test, and Deploy
GitLab CI is an powerful built-in tool for Continuous Integration, Continuos Deployment, and Continuous Delivery, which can be used to run scripts as you wish. The possibilities are endless: think of it as if it was your own command line running the jobs for you.
It's all set by an Yaml file called, .gitlab-ci.yml
, placed at your project's repository. Enjoy the CI templates by simply adding a new file through the web interface, and type the file name as .gitlab-ci.yml
to trigger a dropdown menu with dozens of possible templates for different applications.
Koding
Use GitLab's Koding integration to run your entire development environment in the cloud. This means that you can check out a project or just a merge request in a full-fledged IDE with the press of a button.
Use-Cases
Examples of GitLab CI use-cases:
- Use it to build any Static Site Generator, and deploy your website with GitLab Pages
- Use it to deploy your website to
staging
andproduction
environments - Use it to build an iOS application
- Use it to build and deploy your Docker Image with GitLab Container Registry
We have prepared a dozen of GitLab CI Example Projects to offer you guidance. Check them out!
Feedback: Cycle Analytics
When you follow the GitLab Workflow, you'll be able to gather feedback with GitLab Cycle Analytics on the time your team took to go from idea to production, for each key stage of the process:
- Issue: the time from creating an issue to assigning the issue to a milestone or adding the issue to a list on your Issue Board
- Plan: the time from giving an issue a milestone or adding it to an Issue Board list, to pushing the first commit
- Code: the time from the first commit to creating the merge request
- Test: the time CI takes to run the entire pipeline for the related merge request
- Review: the time from creating the merge request to merging it
- Staging: the time from merging until deploy to production
- Production (Total): The time it takes between creating an issue and deploying the code to production
Enhance
Issue and MR Templates
Issue and MR templates allow you to define context-specific templates for issue and merge request description fields for your project.
You write them in Markdown and add them to the default branch of your repository. They can be accessed by the dropdown menu whenever an issue or MR is created.
They save time when describing issues and MRs and standardize the information necessary to follow along. It makes sure everything you need to proceed is there.
As you can create multiple templates, they serve for different purposes. For example, you can have one for feature proposals, and a different one for bug reports. Check the ones in GitLab CE project for real examples.
Milestones
Milestones are the best tool you have at GitLab to track the work of your team based on a common target, in a specific date.
The goal can be different for each situation, but the panorama is the same: you have a collection of issues and merge requests being worked on to achieve that particular objective.
This goal can be basically anything that groups the team work and effort to do something by a deadline. For example, publish a new release, launch a new product, get things done by that date, or assemble projects to get done by year quarters.
For instance, you can create a milestone for Q1 2017 and assign every issue and MR that should be finished by the end of March, 2017. You can also create a milestone for an event that your company is organizing. Then you access that milestone and view an entire panorama on the progress of your team to get things done.
Pro Tips
For both Issues and MRs
-
In issues and MRs descriptions:
- Type
#
to trigger a dropdown list of existing issues - Type
!
to trigger a dropdown list of existing MRs - Type
/
to trigger slash commands - Type
:
to trigger emojis (also supported for inline comments)
- Type
-
Add images (jpg, png, gif) and videos to inline comments with the button Attach a file
-
Fenced blockquote: use the syntax
>>>
to start and finish a blockquote`>>> Quoted text Another paragraph >>>`
-
Create task lists:
`- [ ] Task 1 - [ ] Task 2 - [ ] Task 3`
Subscribe
Have you found an issue or an MR that you want to follow up? Expand the navigation on your right and click Subscribe and you'll be updated whenever a new comment comes up. What if you want to subscribe to multiple issues and MRs at once? Use bulk subscriptions. 😃
Add TO-DO
Besides keeping an eye on an issue or MR, if you want to take a future action on it, or whenever you want it in your GitLab TO-DO list, expand the navigation tab at your right and click on Add todo.
Search for your Issues and MRs
When you're looking for an issue or MR you opened long ago in a project with dozens, hundreds or even thousands of them, it turns out to be hard to find. Expand the navigation on your left and click on Issues or Merge Requests, and you'll see the ones assigned to you. From there or from any issue tracker, you can filter issues or MRs by author, assignee, milestone, label and weight, also search for opened, merged, closed, and all of them (both merged, closed, and opened).
Moving Issues
An issue end up in a wrong project? Don't worry. Click on Edit, and move the issue to the correct project.
Code Snippets
Sometimes do you use exactly the same code snippet or template in different projects or files? Create a code snippet and leave it available for you whenever you want. Expand the navigation on your left and click Snippets. All of your snippets will be there. You can set them to public, internal (only for GitLab logged users), or private.
GitLab WorkFlow Use-Case Scenario
To wrap-up, let's put everything together. It's easy!
Let's suppose you work at a company focused in software development. You created a new issue for developing a new feature to be implemented in one of your applications.
Labels Strategy
For this application, you already have created labels for "discussion", "backend", "frontend", "working on", "staging", "ready", "docs", "marketing", and "production." All of them already have their own lists in the Issue Board. Your issue currently have the label "discussion."
After the discussion in the issue tracker came to an agreement, your backend team started to work on that issue, so their lead moved the issue from the list "discussion" to the list "backend." The first developer to start writing the code assigned the issue to himself, and added the label "working on."
Code & Commit
In his first commit message, he referenced the issue number. After some work, he pushed his commits to a feature-branch and created a new merge request, including the issue closing pattern in the MR description. His team reviewed his code and made sure all the tests and builds were passing.
Using the Issue Board
Once the backend team finished their work, they removed the label "working on" and moved the issue from the list "backend" to "frontend" in the Issue Board. So, the frontend team knew that issue was ready for them.
Deploying to Staging
When a frontend developer started working on that issue, he or she added back the label "working on" and reassigned the issue to him/herself. When ready, the implementation was deployed to a staging environment. The label "working on" was removed and the issue card was moved to the "staging" list in the Issue Board.
Teamwork
Finally, when the implementation succeeded, your team moved it to the list "ready."
Then, the time came for your technical writing team to create the documentation for the new feature, and once someone got started, he/she added the label "docs." At the same time, your marketing team started to work on the campaign to launch and promote that feature, so someone added the label "marketing." When the tech writer finished the documentation, he/she removed the label "docs." Once the marketing team finished their work, they moved the issue from the list "marketing" to "production."
Deploying to Production
At last, you, being the person responsible for new releases, merged the MR and deployed the new feature into the productionenvironment and the issue was closed.
Feedback
With Cycle Analytics, you studied the time taken to go from idea to production with your team, and opened another issue to discuss the improvement of the process.
Conclusions
GitLab Workflow helps your team to get faster from idea to production using a single platform:
- It's effective, because you get your desired results.
- It's efficient, because you achieve maximum productivity with minimum effort and expense.
- It's productive, because you are able to plan effectively and act efficiently.
- It's easy, because you don't need to setup different tools to accomplish what you need with just one, GitLab.
- It's fast, because you don't need to jump across multiple platforms to get your job done.
A new GitLab version is released every single month (on the 22nd), for making it a better integrated solution for software development, and for bringing teams to work together in one single and unique interface.
At GitLab, everyone can contribute! Thanks to our amazing community we've got where we are. And thanks to them, we keep moving forward to provide you with a better product.
Questions? Feedback? Please leave a comment or tweet at us @GitLab! 🙌
via: https://about.gitlab.com/2016/10/25/gitlab-workflow-an-overview/
作者:Marcia Ramos
译者:译者ID
校对:校对者ID