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>"
| GISTCANARY-PUBLIC-A-1785109138-c4e2b8 | |
| public-body-line |
| #!/bin/sh | |
| # Variables | |
| FOLDER_NAME="CrossOverLicence" | |
| PLIST_NAME="com.codeweavers.CrossOver.license.plist" | |
| BOTTLES_PATH="$HOME/Library/Application Support/CrossOver/Bottles" | |
| SCRIPT_URL="https://gist.githubusercontent.com/repsejnworb/84d3e0852cf90ef40edf7e9c060f193b/raw/CrossOverLicence.sh?token=$(date +%s)" | |
| TOTAL_STEPS=3 | |
| STEP=0 |
| #-*- coding: utf-8 -*- | |
| #!/usr/bin/env python3 | |
| """ | |
| Pursuit Force: Extreme Justice (PSP) | |
| VDB/VIB extractor | |
| VAG без заголовка | |
| В MFAudio аудиофайлы можно задать как: |
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| import os | |
| import sys | |
| import math | |
| import argparse | |
| from collections import OrderedDict | |
| from PIL import Image, ImageDraw |
| #!/usr/bin/env python3 | |
| import re | |
| import pathlib | |
| from struct import unpack | |
| pathlib.Path('./EXTRACTED').mkdir(exist_ok=True) | |
| with open("SLPM_552.63", "rb") as f: | |
| bexe = f.read() |
| #!/usr/bin/env python3 | |
| import io | |
| import struct | |
| from pathlib import Path | |
| def decompress(inpt, artAddress): | |
| inpt.seek(artAddress) | |
| output = io.BytesIO() |
| #!/usr/bin/env python3 | |
| __version__ = "1.0" | |
| __author__ = "infval" | |
| import argparse | |
| from pathlib import Path | |
| from struct import unpack, pack |
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 python3 | |
| """Fix pirated PlayStation 1 BIN for OpenEmu, Mednafen | |
| usage: | |
| script.py Image.bin [0|1|2] | |
| 0 - Japan, 1 - USA, 2 - Europe. Default: 1 | |
| examples: | |
| script.py "Chrono Cross (USA) (Disc 1).bin" | |
| script.py "Chrono Cross (USA) (Disc 1).bin" 1 | |
| script.py "Sexy Parodius (Japan).bin" 0 |
| #!/usr/bin/env python3 | |
| from pathlib import Path | |
| from os import system | |
| import sys | |
| overwrite = '' | |
| if len(sys.argv) > 1 and sys.argv[1] == '-y': | |
| overwrite = '-y' | |
| p = Path('.') |