From 7e563ea8b7adb97306479d7b38f53bfdcaf8a2e0 Mon Sep 17 00:00:00 2001 From: Varunmanik2 <103329447+Varunmanik2@users.noreply.github.com> Date: Sat, 29 Apr 2023 11:49:59 +0800 Subject: [PATCH] Update README.md I have shifted the toc on top. --- 2-Git/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/2-Git/README.md b/2-Git/README.md index 3e9dad2..8698eda 100644 --- a/2-Git/README.md +++ b/2-Git/README.md @@ -1,5 +1,13 @@ # Version Control System +## Table of Contents + +1. [Purpose of Git Branches](#purpose-of-git-branches) +2. [Creating a Branch](#creating-a-branch) +3. [Switching Between Branches](#switching-between-branches) +4. [Merging Branches](#merging-branches) +5. [Deleting a Branch](#deleting-a-branch) + ## Introduction Version control systems (VCS) are essential tools for tracking changes in software projects, allowing you to maintain a complete history of modifications made to your codebase. This enables developers to easily collaborate, track progress, and revert changes if needed.