Skip to content

Instantly share code, notes, and snippets.

@fnky
fnky / ANSI.md
Last active March 10, 2025 11:10
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@eyecatchup
eyecatchup / git-commit-log-stats.md
Last active February 6, 2025 14:35
Some commands to get git commit log statistics for a repository on the command line.

git commit stats

Commands to get commit statistics for a Git repository from the command line -
using git log, git shortlog and friends.