👩💻 Join our community of thousands of amazing developers!
1. How does Git Work? Git is a distributed version control system. Every developer maintains a local copy of the main repository and edits and commits to the local copy. The commit is very fast because the operation doesn’t interact with the remote repository. If the remote repository crashes, the files can be recovered from the local repositories. The diagram below shows the Git workflow. 2. Git Workflow & Immutability Immutability here means that once data is written into Git, it ca...