SAGARFIVE

1. Introduction

2. Git Basics

3.  Git Terminology

4.  Git Branching

5.  Git - Github

6.  Git Add (Git staging)

7.  Git Commit

8.  Github Advanced

9.  Git Remote

3.6 Working Directory

  • Working directory is Where the source code is saved. We have to convert the folder into a working directory by running a git command .  git init  we run the git commands in git bash/terminal
  • Observations: .git folder created on working/project directory, and in git bash you can see name master.

mkdir <repo-folder-name>
cd <repo>git init
git init