Skip to content

Instantly share code, notes, and snippets.

View poom's full-sized avatar

Poom Phathaisarn poom

  • Bangkok
  • 10:49 (UTC +07:00)
View GitHub Profile
@poom
poom / git-commit-log-stats.md
Created August 27, 2023 15:20 — forked from eyecatchup/git-commit-log-stats.md
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.




@poom
poom / update-go-mod.sh
Created May 23, 2025 04:23
Script to update go dependencies
#!/bin/bash
set -e
# --- Prerequisite Checks ---
if ! command -v go &> /dev/null; then
echo "Error: Go command-line tool is not installed or not in PATH."
echo "Please install Go: https://golang.org/doc/install"
exit 1
fi