Table of Contents
The first scenario: normal development iteration
The second scenario is online bug repair
The third scenario is multi-version parallel development
Q&A
Home Development Tools git Share an elegant way to play git workflow

Share an elegant way to play git workflow

Jan 13, 2023 pm 03:44 PM
front end git rear end

在开发中,不论是一个团队一起开发一个项目,还是自己独立开发一个项目。都少不了要和git打交道。面对不同的开发场景,或许每个团队都有自己的git工作流。这里,我想分享一下我的团队目前正在使用的基于gitlabgit工作流。一起交流一下。

规范化的git流程能降低我们的出错概率,也不会经常遇到git问题,然后去搜一堆git高阶用法。我们的这套git玩法儿,其实只要会基本的git操作就行了,然后规范化操作,基本不会遇到git问题,这样大家就可以将时间用于业务上。最终,希望大家研究git的时候是在感兴趣的时候,而不是遇到问题,紧急去寻找答案的时候

我们的这种git工作流玩儿法呢,主要是分为下面几个分支:

  • master分支   最新的稳定代码
  • vx.x.x分支   版本分支,x.x.x是此次开发的版本号。
  • feat-xxx分支 特性(新的功能)分支
  • fix-xxx分支  修复分支

上面的这些分支呢,就是我们在开发中需要经常去创建并使用的分支。下面详细说说每个分支代表的意思。

master分支代表的是最新的稳定版本的代码,一般是版本分支或者修复分支的代码上线后合并过来的。

feat-xxx分支表示的是为开发某个版本的某个新功能而创建的分支。

vx.x.x represents the version branch. This is the branch we create from master under the name of this version number before the start of each version, such as version number is 2.0.1, then the version branch is v2.0.1. Then wait until the new features of this version are developed in feat-xxx and pass the smoke test, then go to gitlab to submit a mr and merge it into this version on the branch. After each environment test passes, merge the code of the version branch into master, and then delete this version branch.

fix-xxx represents the repair branch. Usually when dealing with online problems, a branch named after the defect name is created. After the defect test passes, mrMerge to the master branch to

Note: There is a detail here that the commit information submitted by development on the feature branch is generally considered to be useless information. When merging to the version branch, merge it into a commit (since we are using gitlab to merge, so check when initiating the mr request squash option will be fine), and after the test is submitted, whether it is to fix bugs during the test process or to optimize the function, all commit will be retained. This purpose is a warning, because I hope that the most The good situation is that the test is launched immediately. Although it is difficult to achieve this goal, the commit information left behind can help us review the

functions of each branch as described above. , then let’s talk about how to do some classic scenarios we developed:

The first scenario: normal development iteration

We take this time we need to develop a 1.0.0 version as an example. There are two functional modules, one needs to add a button, and the other needs to add a form

sequenceDiagram
master->>v1.0.0: 从master切出 v1.0.0
master->>feat-add-button: 从master切出 feat-add-button
master->>feat-add-form: 从master切出 feat-add-button
feat-add-form->>feat-add-form: 开发完成
feat-add-button->>feat-add-button: 开发完成
feat-add-button->>v1.0.0: 在gitlab发起mr到v1.0.0,并合并所有commit
feat-add-form->>v1.0.0: 在gitlab发起mr到v1.0.0,并合并所有commit
v1.0.0->>v1.0.0: 提测
feat-add-button->>feat-add-button: 修复测试bug
feat-add-button->>v1.0.0: 将修复的 commit cherry pick到 v1.0.0
v1.0.0->>master: 在gitlab上mr到master,并将合并信息改成 v1.0.0
Copy after login

Share an elegant way to play git workflow

Through the above sequence diagram, you can see that we are about to start The version named a version branch v1.0.0, and also created two feature branches feat-add-button and feat- based on the two functions under this version. add-form, and then wait for the function development to be completed before initiating mr through gitlab (note that the mergecommit option must be checked here) to merge To v1.0.0, then the code of the v1.0.0 branch will start flowing from the dev environment to the production environment. Among them, if there is anything that needs to be fixed or optimized, the feature branch will be modified first, and then cherry pick will be moved to the version branch. After going online, delete the version branch and the following feature branches.

The code version managed through this process is very clear. This is a part of the intercepted master fragment.

Share an elegant way to play git workflow

There is another scene in the normal iteration process. That is, during the development process, PM suddenly came over and said that due to some kind of force majeure, a function needed to be cut off. At this time, if the code has not been tested yet, or the function is relatively simple, it is not too troublesome to deal with it. But if so, your function and the code of other colleagues have been tested, and some bugs have been fixed. The commits are all intertwined, especially the requirements that involve modifying many files, which will be very troublesome to deal with at this time. , not only do you have to look at other people's code, but you also have to be careful not to make mistakes in your own code. At this time, it is very simple in our process. Just delete the existing version branches, and then regroup the feature branches that need to be online. It can be seen that version branches are combined by feature branches, that is to say, version branches can be arbitrarily combined by different feature branches. This is more convenient to handle

The second scenario is online bug repair

We take the click event of a button that needs to be repaired online as an example

sequenceDiagram
master->>fix-button-click: 从master切出 fix-button-click
fix-button-click->>fix-button-click: 修复问题并测试
fix-button-click->>master: 从gitlab发起mr合并到master
Copy after login

In fact, the process here It’s not much different from the above, but what needs to be noted here is that when fixing online problems, one commit will be made for each bug, and the commits will not be merged when merging it into the master. And the merge information needs to be modified to this version number. For example, this time it is v1.0.1

The third scenario is multi-version parallel development

This scenario is no different from the normal iteration scenario, it just depends on whether you have multiple versions, so create The corresponding version branch is enough. Just follow the normal iteration process for each version branch.

Q&A

Q: Why are there no branches corresponding to the environment such as dev, test, etc., so that push and deployment can be achieved

A: Our process has given up using these Fixed branch. There are several reasons,

  • After the code is tested, from dev to test, or even to uat (pre-release) environment, if there are code changes in different environments, then in order to keep the code of these branches consistent, it is necessary Synchronizing the code to each environment branch is a bit troublesome. This problem does not exist with version branches. There is only one version branch, which can correspond to various environments.

  • Convenient for parallel development of multiple versions. Multiple version branches can be created, which is more convenient to deploy to different test environments during parallel development. If the modules between versions are not closely related, you can also test them in parallel.

  • Semantic. Version branches can be used to know which branches are currently under development through the branch name.

Q: How to deal with changes in the master branch

A: If there are changes in the master branch, merge them into your own functional branch in a timely manner to prevent conflicts with other members' codes If there is a conflict

Recommended study: "Git Video Tutorial"

The above is the detailed content of Share an elegant way to play git workflow. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to install deepseek How to install deepseek Feb 19, 2025 pm 05:48 PM

There are many ways to install DeepSeek, including: compile from source (for experienced developers) using precompiled packages (for Windows users) using Docker containers (for most convenient, no need to worry about compatibility) No matter which method you choose, Please read the official documents carefully and prepare them fully to avoid unnecessary trouble.

Summary of FAQs for DeepSeek usage Summary of FAQs for DeepSeek usage Feb 19, 2025 pm 03:45 PM

DeepSeekAI Tool User Guide and FAQ DeepSeek is a powerful AI intelligent tool. This article will answer some common usage questions to help you get started quickly. FAQ: The difference between different access methods: There is no difference in function between web version, App version and API calls, and App is just a wrapper for web version. The local deployment uses a distillation model, which is slightly inferior to the full version of DeepSeek-R1, but the 32-bit model theoretically has 90% full version capability. What is a tavern? SillyTavern is a front-end interface that requires calling the AI ​​model through API or Ollama. What is breaking limit

Delphi Digital: How to change the new AI economy by parsing the new ElizaOS v2 architecture? Delphi Digital: How to change the new AI economy by parsing the new ElizaOS v2 architecture? Mar 04, 2025 pm 07:00 PM

ElizaOSv2: Empowering AI and leading the new economy of Web3. AI is evolving from auxiliary tools to independent entities. ElizaOSv2 plays a key role in it, which gives AI the ability to manage funds and operate Web3 businesses. This article will dive into the key innovations of ElizaOSv2 and how it shapes an AI-driven future economy. AI Automation: Going to independently operate ElizaOS was originally an AI framework focusing on Web3 automation. v1 version allows AI to interact with smart contracts and blockchain data, while v2 version achieves significant performance improvements. Instead of just executing simple instructions, AI can independently manage workflows, operate business and develop financial strategies. Architecture upgrade: Enhanced A

What are the Grayscale Encryption Trust Funds? Common Grayscale Encryption Trust Funds Inventory What are the Grayscale Encryption Trust Funds? Common Grayscale Encryption Trust Funds Inventory Mar 05, 2025 pm 12:33 PM

Grayscale Investment: The channel for institutional investors to enter the cryptocurrency market. Grayscale Investment Company provides digital currency investment services to institutions and investors. It allows investors to indirectly participate in cryptocurrency investment through the form of trust funds. The company has launched several crypto trusts, which has attracted widespread market attention, but the impact of these funds on token prices varies significantly. This article will introduce in detail some of Grayscale's major crypto trust funds. Grayscale Major Crypto Trust Funds Available at a glance Grayscale Investment (founded by DigitalCurrencyGroup in 2013) manages a variety of crypto asset trust funds, providing institutional investors and high-net-worth individuals with compliant investment channels. Its main funds include: Zcash (ZEC), SOL,

As top market makers enter the crypto market, what impact will Castle Securities have on the industry? As top market makers enter the crypto market, what impact will Castle Securities have on the industry? Mar 04, 2025 pm 08:03 PM

The entry of top market maker Castle Securities into Bitcoin market maker is a symbol of the maturity of the Bitcoin market and a key step for traditional financial forces to compete for future asset pricing power. At the same time, for retail investors, it may mean the gradual weakening of their voice. On February 25, according to Bloomberg, Citadel Securities is seeking to become a liquidity provider for cryptocurrencies. The company aims to join the list of market makers on various exchanges, including exchanges operated by CoinbaseGlobal, BinanceHoldings and Crypto.com, people familiar with the matter said. Once approved by the exchange, the company initially planned to set up a market maker team outside the United States. This move is not only a sign

Significantly surpassing SFT, the secret behind o1/DeepSeek-R1 can also be used in multimodal large models Significantly surpassing SFT, the secret behind o1/DeepSeek-R1 can also be used in multimodal large models Mar 12, 2025 pm 01:03 PM

Researchers from Shanghai Jiaotong University, Shanghai AILab and the Chinese University of Hong Kong have launched the Visual-RFT (Visual Enhancement Fine Tuning) open source project, which requires only a small amount of data to significantly improve the performance of visual language big model (LVLM). Visual-RFT cleverly combines DeepSeek-R1's rule-based reinforcement learning approach with OpenAI's reinforcement fine-tuning (RFT) paradigm, successfully extending this approach from the text field to the visual field. By designing corresponding rule rewards for tasks such as visual subcategorization and object detection, Visual-RFT overcomes the limitations of the DeepSeek-R1 method being limited to text, mathematical reasoning and other fields, providing a new way for LVLM training. Vis

Bitwise: Businesses Buy Bitcoin A Neglected Big Trend Bitwise: Businesses Buy Bitcoin A Neglected Big Trend Mar 05, 2025 pm 02:42 PM

Weekly Observation: Businesses Hoarding Bitcoin – A Brewing Change I often point out some overlooked market trends in weekly memos. MicroStrategy's move is a stark example. Many people may say, "MicroStrategy and MichaelSaylor are already well-known, what are you going to pay attention to?" This is true, but many investors regard it as a special case and ignore the deeper market forces behind it. This view is one-sided. In-depth research on the adoption of Bitcoin as a reserve asset in recent months shows that this is not an isolated case, but a major trend that is emerging. I predict that in the next 12-18 months, hundreds of companies will follow suit and buy large quantities of Bitcoin

The latest tutorial on how to install the ios version installation package of Ouyi The latest tutorial on how to install the ios version installation package of Ouyi Feb 21, 2025 pm 07:36 PM

This guide will provide a comprehensive overview of how to install the latest installation packages from EV Exchange on iOS devices. Ouyi Exchange is a leading cryptocurrency trading platform that provides a wide range of cryptocurrency trading, asset management and investment services. By following the step-by-step instructions provided in this guide, users can easily and easily install the Euyi Exchange app on their iPhone or iPad. This guide is suitable for all iOS devices, from older models to the latest generation, and includes clear screenshots and detailed instructions to ensure a seamless installation process.

See all articles