커밋 메시지 스타일을 약간 바꿈으로써 어떻게 더 나은 프로그래머가 될 수 있는지 알아보세요.
포멧:
<타입>(<스코프>): <짧은 요약>
Format:<type>(<scope>): <short summary>
<scope>는 선택적입니다.
| root = true | |
| [*.tsx] | |
| indent_style = space | |
| indent_size = 2 | |
| # semicolon | |
| ij_typescript_force_semicolon_style = false | |
| ij_typescript_space_before_for_semicolon = false | |
| ij_typescript_use_semicolon_after_statement = false |
| import datetime as dt | |
| class Color(): | |
| red = "\x1b[31m" | |
| green = "\x1b[32m" | |
| yellow = "\x1b[33m" | |
| blue = "\x1b[34m" | |
| white = "\x1b[37m" | |
| bold = "\x1b[1m" |
| { | |
| "$schema": "", | |
| "type": "object", | |
| "properties": { | |
| "author": { | |
| "type": "string" | |
| }, | |
| "extensions": { | |
| "type": {"string"} | |
| } |
| /* EDIT MODE */ | |
| .canvas-node .HyperMD-header.HyperMD-header-1 { | |
| text-align: center; | |
| } | |
| /* PREVIEW MODE */ | |
| .canvas-node .markdown-preview-view h1 { | |
| text-align: center; |
| #!/bin/bash | |
| set -e | |
| PACKAGES="raspberrypi-kernel-headers zfs-dkms zfsutils-linux curl cryptsetup lvm2 lsof grub-efi-arm64" | |
| ZFS_MODULE="zfs" | |
| MOUNT_POINT="/mnt/newroot" | |
| IMAGE_URL="https://downloads.raspberrypi.org/raspios_lite_arm64_latest" | |
| IMAGE_FILE="raspios_lite_arm64_latest.img" | |
| COMPRESSED_FILE="${IMAGE_FILE}.xz" |
| https://unix.stackexchange.com/a/669602 |