Git Synchronize

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 remote add <name> <url>

1

Create a new connection to a remote repo.

git fetch

2

get all the changes from the origin (no merge)

git pull

3

get all the latest changes from the origin and merge

git push

4

is used to upload your local repository changes to the origin remote repo

Thank You