Day 15: Git Zero To Hero ๐Ÿš€

ยท

1 min read


Parody Relax GIF - Parody Relax Chill GIFs

What Is Branching?

Day 3 of Game Dev: The basics of branching using Git! | by Ethan Martin |  Dev Genius

  1. The branching in git is simply the lightweight movable pointer to one of the commits.

  2. The default branch name in git is "master".

  3. Branching: Diverging from the main branch.

If still not understood what branching is let me explain u by giving an example, let's say u have a website(xyz.com) and you decided to add animation to your website for that u cannot do changes on your default branch (i.e master branch) on which you have your main code, so for that you have created a different branch let say (UI branch) and started coding and making changes on that branch which won't affect your master branch and if everything is working fine you can merge it into your master branch else u can delete it. ๐Ÿ˜

Next Blog Teaser ๐Ÿ˜„

Non-Linear Developement๐Ÿคฉ

Bye GIFs | Tenor

Thanks for reading ๐Ÿ™๐Ÿงก

ย