Git is a distributed version control system that tracks changes in code, enabling collaboration and efficient project management.

10 Git Useful Commands for Every Developer

 

Git commands:

1) git init : This command is used to start a new repository

2) git clone : This command is used to obtain a repository from an existing URL

3) git add : This command adds a file to the staging area

4) git commit : This command records or snapshots the file permanently in the version history

5) git push : This command sends the committed changes of master branch to your remote repository.

Subscribe to GIT