GIT Basics Commands to Become a Pro Developer

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 init

1

will create a new local GIT repository

git clone

2

is used to copy a repository

git add

3

add a file as it looks new to your next commit.

git commit

4

will create a snapshot of the changes and save it to the gir directory.

git push

5

push local changes to the original

Thank You