See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
| // _ _ _ _ | |
| // | | | | | | (_) | |
| // | |__ | |_| |_ _ __ _ ___ | |
| // | '_ \| __| __| '_ \ | / __| | |
| // | | | | |_| |_| |_) || \__ \ | |
| // |_| |_|\__|\__| .__(_) |___/ | |
| // | | _/ | | |
| // |_| |__/ | |
| // | |
| // An enum that represents all of the listed HTTP response status codes as |
| #!/usr/bin/python | |
| import datetime | |
| import logging | |
| import os | |
| import pathlib | |
| import re | |
| import stat | |
| import subprocess | |
| import sys |
| #!/usr/bin/python | |
| import logging | |
| import subprocess | |
| import sys | |
| import time | |
| try: | |
| import keyboard | |
| import mouse |
| #!/usr/bin/bash | |
| if [ $1 == "--help" ] || [ $1 == "-h" ]; then | |
| echo "USAGE: $(basename "$0") [minecraft_version] [paper_build]" | |
| exit 0 | |
| fi | |
| URL="https://api.papermc.io/v2/projects/paper" | |
| if [ $# -lt 1 ]; then |
| [BITS 16] ; 16-bit code | |
| [ORG 0x7C00] ; BIOS loads the boot sector at 0x7C00 | |
| jmp start ; Jump to the `start` label | |
| message db "Hello, World!", 0 ; The message to print | |
| length equ ($ - message) ; The length of `message` (difference of the | |
| ; current address and the address of `message`) | |
| start: | |
| mov si, message ; Load the address of `message` into SI |