October 2016
Beginner
861 pages
20h 37m
English
Handling version control is only a part of the development workflow. There is also work management, code review and audit, running automated tests, and generating builds.
Many of these steps can be helped using specialized tools. Many of them offer Git integration. For example, code review can be managed using Gerrit, requiring that each change passes a review before being made public. Another example is setting up development environments so that pushing changes to the public repository can automatically close tickets in the issue tracker based on the patterns in the commit messages. This can be done with the server-side hooks or with the hosting service's webhooks.
A repository can serve as a gateway, running automated ...