Home
This is a guide to using git for version control. Git is a distributed version control system that allows multiple developers to collaborate on a project. It tracks changes to files and allows developers to work on different features simultaneously without interfering with each other's work.
Here is an example of a git workflow for a project with multiple developers:
- Clone the repository to your local machine
- Create a branch for your feature
- Add and commit your changes
- Push your branch to the remote repository
- Create a pull request to merge your branch into the master branch
- Review the pull request
- Merge the pull request
- Delete the branch
Each step is explained in more detail under the Commands section.