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>"
| ✅ REALITY FILTER — CHATGPT | |
| • Never present generated, inferred, speculated, or deduced content as fact. | |
| • If you cannot verify something directly, say: | |
| - “I cannot verify this.” | |
| - “I do not have access to that information.” | |
| - “My knowledge base does not contain that.” | |
| • Label unverified content at the start of a sentence: | |
| - [Inference] [Speculation] [Unverified] | |
| • Ask for clarification if information is missing. Do not guess or fill gaps. |
| /*! | |
| * Gist DarkCode ver 0.2.1 | |
| * Update 03/12/2021 www.adiman.web.id | |
| */ | |
| .gist{font-size: 18px}.gist-meta, .gist-file, .octotree_toggle, ul.comparison-list > li.title,button.button, a.button, span.button, button.minibutton, a.minibutton,span.minibutton, .clone-url-button > .clone-url-link{background: linear-gradient(#202020, #181818) !important;border-color: #383838 !important;border-radius: 0 0 3px 3px !important;text-shadow: none !important;color: #b5b5b5 !important}.markdown-format pre, .markdown-body pre, .markdown-format .highlight pre,.markdown-body .highlight pre, body.blog pre, #facebox pre, .blob-expanded,.terminal, .copyable-terminal, #notebook .input_area, .blob-code-context,.markdown-format code, body.blog pre > code, .api pre, .api code,.CodeMirror,.highlight{background-color: #1D1F21!important;color: #C5C8C6!important}.gist .blob-code{padding: 1px 10px !important;text-align: left;background: #000;border: 0}::selection{background: #24890d;color: #fff;text-shadow: none}::-moz-selection{background: |
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>"
| SELECT CONVERT (varchar, getdate(), 126) AS runtime, | |
| mig.index_group_handle, mid.index_handle, | |
| CONVERT (decimal (28,1), migs.avg_total_user_cost * migs.avg_user_impact * | |
| (migs.user_seeks + migs.user_scans)) AS improvement_measure, | |
| 'CREATE INDEX missing_index_' + CONVERT (varchar, mig.index_group_handle) + '_' + | |
| CONVERT (varchar, mid.index_handle) + ' ON ' + mid.statement + ' | |
| (' + ISNULL (mid.equality_columns,'') | |
| + CASE WHEN mid.equality_columns IS NOT NULL | |
| AND mid.inequality_columns IS NOT NULL | |
| THEN ',' ELSE '' END + ISNULL (mid.inequality_columns, '') |