Getting Started with GIT
First things first A repository, also known as repo is nothing but collection of source code. It allows you to save versions of your code, which you can access when needed. Setting up a repository Initializing a new repository: git init git init command allows us to create a new repo. It is a one-time …
