Advance Git & GitHub for DevOps Engineers: Part1 ๐
Git Branching
Each repository has one default branch and can have multiple other branches. You can merge a branch into another branch using a pull request.
To show all Branches:
git branch
Create a new Branch:
git branch <branch_name>
Specific or C...
raqeebtech.hashnode.dev1 min read