Git Workflow for Professionals

Arjav Dave
ITNEXT
Published in
9 min readMay 25, 2021

--

Branches, Merge Conflicts, Pull Requests and much more

It’s not that simple!

Linus Torvalds, the man who created Linux Kernel, is also responsible for creating Git. Git has become the most popular SCM (Source Control Management) tool since it’s launch in 2005. It holds more than 80% of the market share of the SCM tools.

What is Git?

Git is a Source Control Management tool which helps team members to work on the same source code, simultaneously, with minimal conflicts. Even if you are a one person team it is good to have backups. Sometimes you would like to rollback to a previous code. Git helps with all these.

Though, you should know the basic commands of git like add, commit, pull, push, etc. this article is not about that. We will be using GitHub and GitHub IDE for managing our repository. GitHub Desktop is a GUI for using Git.

Before moving further make sure you have Git and GitHub Desktop installed on your machine. In this article, Mac is used but the Workflow and tools will remain same for different OS.

Use Case

Let’s say we are a team of two people and have to work on a Website. This website has two pages About and Contact. This article will detail out how the team can work on the source code together and resolve conflicts during merge.

--

--