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>"
| { | |
| "ease": [0.25, 0.1, 0.25, 1.0], | |
| "linear": [0.00, 0.0, 1.00, 1.0], | |
| "ease-in": [0.42, 0.0, 1.00, 1.0], | |
| "ease-out": [0.00, 0.0, 0.58, 1.0], | |
| "ease-in-out": [0.42, 0.0, 0.58, 1.0] | |
| } |
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>"
| function Node(value, parent = null){ | |
| this.value = value | |
| this.left = null | |
| this.right = null | |
| this.parent = parent | |
| } | |
| // create tree |