Lightweight Branching Workflows for Effective Development

lesson 15 branching workflows n.w
1 / 6
Embed
Share

Explore the possibilities of branching and merging in Git to optimize your development cycle. Learn about long-running branches, topic branches, and the importance of local branches in this informative guide.

  • Git
  • Branching
  • Merging
  • Development
  • Workflow

Uploaded on | 0 Views


Download Presentation

Please find below an Image/Link to download the presentation.

The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author. If you encounter any issues during the download, it is possible that the publisher has removed the file from their server.

You are allowed to download the files provided on this website for personal or commercial use, subject to the condition that they are used lawfully. All files are the property of their respective owners.

The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author.

E N D

Presentation Transcript


  1. Lesson 15: Branching Workflows Trainer: Bach Ngoc Toan TEDU Founder Support Forum: http://forum.tedu.com.vn

  2. Overview Now that you have the basics of branching and merging down, what can or should you do with them? In this section, we ll cover some common workflows that this lightweight branching makes possible, so you can decide if you would like to incorporate it into your own development cycle.

  3. Long-Running Branches Because Git uses a simple three-way merge, merging from one branch into another multiple times over a long period is generally easy to do. This means you can have several branches that are always open and that you use for different stages of your development cycle; you can merge regularly from some of them into others.

  4. Topic Branches

  5. Important It s important to remember when you re doing all this that these branches are completely local. When you re branching and merging, everything is being done only in your Git repository no server communication is happening.

  6. Practice

More Related Content