Git Best Practices

Git Best Practices Commit Related Changes A commit should be a wrapper for related changes. Example: fixing  two different bugs should produce two separate commits.  Commit Often Committing often keeps your commits small. Small commits make it easer for other team members to understand the changes and roll them back if some thing went wrong. […]