See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| #!/usr/bin/env python | |
| from itertools import combinations, chain | |
| import numpy as np | |
| from pyhull.convex_hull import ConvexHull | |
| from stl import Mode | |
| from stl.mesh import Mesh | |
| def subdivide(shape): | |
| ''' Take a triangulated sphere and subdivide each face. ''' |
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <fontconfig> | |
| <!-- Add generic family. --> | |
| <match target="pattern"> | |
| <test qual="any" name="family"><string>emoji</string></test> | |
| <edit name="family" mode="assign" binding="same"><string>Noto Color Emoji</string></edit> | |
| </match> |