GIT Branching and Merging

Git is a version control system for software development. It tracks changes made to files and allows multiple developers to collaborate on a project by sharing and merging those changes. It is widely used by developers and organizations to manage their source code.

What is GIT?

git branch

1

will list your branches

git checkout

2

switch to another branch and check it out into your working directory.

git merge

3

will merge the specified branches history into the current branch

git log

4

Show all commits in the current branch's history

Thank You