The concept of VCS is widely popular among developers across the globe. We cannot deny the fact that VCS has been a lifesaver for all geeks. On top of that, source code management like Git is very handy. With the help of Git, we can easily keep a track of changes made within the project along with its other details. The feature of Git doesn’t limit to tracking the changes, we can also set checkpoints so that we can revert back the changes whenever required. The most popular VCS tools are GitHub, GitLab, BitBucket, etc.
Frequently used Git commands
1. git init
2. git add .
3. git commit -m "commit_message"
4. git push origin -M main
5. git pull origin main
6. git status
7. git log
8. git branch
9. git checkout
10. git fetch
11. git merge
