git स्थिति 2.0

जो भी सुबह सबसे पहले आएगा git status जो कोई भी टाइप करता है और फिर कॉफ़ी पीता है, उसे यह छोटा सा मददगार ज़रूर पसंद आएगा। खासकर जब कई वेब प्रोजेक्ट एक साथ विकसित किए जा रहे हों, तो एक संक्षिप्त अवलोकन बहुत उपयोगी होता है: वर्क ट्री कहाँ साफ़ है, कहाँ अनमर्ज्ड बदलाव हैं, और कहाँ पुल/पुश पेंडिंग है? आपको बस एक छोटा सा शेल टूल चाहिए - बशर्ते वह पाथ्स में स्पेस/यूनिकोड को मज़बूती से हैंडल करे और अटके हुए रिमोट्स पर अटके नहीं।


#!/usr/bin/env bash

set -Eeuo pipefail
export LC_ALL=C

# Check if a command exists (no output).
have() { command -v "$1" >/dev/null 2>&1; }

# Ensure we have a `sort` that supports -z (NUL-delimited) input.
SORT_BIN="sort"
if ! "$SORT_BIN" -z </dev/null 2>/dev/null; then
  if have gsort && gsort -z </dev/null 2>/dev/null; then
    SORT_BIN="gsort"
  else
    printf 'Error: This script requires "sort -z" (GNU coreutils). Install coreutils (gsort).\n' >&2
    exit 1
  fi
fi

# Use GNU `timeout` if available; otherwise try `gtimeout` (macOS); otherwise no timeout.
TIMEOUT_BIN="timeout"
if ! have "$TIMEOUT_BIN"; then
  if have gtimeout; then
    TIMEOUT_BIN="gtimeout"
  else
    TIMEOUT_BIN=""
  fi
fi

# Require git.
if ! have git; then
  printf 'Error: "git" not found.\n' >&2
  exit 1
fi

# Remove a leading "./" from a path for cleaner output.
trim_dot_slash() {
  case "$1" in
    ./*) printf '%s\n' "${1#./}" ;;
    *)   printf '%s\n' "$1" ;;
  esac
}

# Legend + divider (as requested)
printf '\n🟢: clean\n🟡: behind/ahead\n🔴: modified\n\n----------------------------------\n\n'

# Find all .git directories, NUL-delimited; sort NUL-delimited; iterate safely.
find . -type d -name .git -print0 \
| "$SORT_BIN" -z \
| while IFS= read -r -d '' gitdir; do
    repo="${gitdir%/.git}"
    display_path="$(trim_dot_slash "$repo")"

    # Skip anything that isn't a proper work tree (safety check).
    if ! git -C "$repo" rev-parse --is-inside-work-tree >/dev/null 2>&1; then
      continue
    fi

    # Working tree status; include untracked files for a strict "red" signal.
    status_out="$(git -C "$repo" status --porcelain=v1 || true)"

    # Upstream divergence check (only if an upstream is configured).
    ahead=0
    behind=0
    if git -C "$repo" rev-parse --abbrev-ref --symbolic-full-name '@{u}' >/dev/null 2>&1; then
      # Refresh refs; protect with timeout so a hanging remote doesn't stall the loop.
      if [ -n "$TIMEOUT_BIN" ]; then
        "$TIMEOUT_BIN" 10s git -C "$repo" fetch --all --prune >/dev/null 2>&1 || true
      else
        git -C "$repo" fetch --all --prune >/dev/null 2>&1 || true
      fi
      # Count commits only on our side (ahead) and only on upstream's side (behind).
      ahead="$(git  -C "$repo" rev-list --count --left-only  HEAD...@{u} 2>/dev/null || echo 0)"
      behind="$(git -C "$repo" rev-list --count --right-only HEAD...@{u} 2>/dev/null || echo 0)"
    fi

    # Decide the signal:
    # - RED if the working tree isn't clean
    # - YELLOW if clean but ahead/behind of upstream
    # - GREEN otherwise
    if [ -n "$status_out" ]; then
      printf '🔴 %s\n' "$display_path"
    else
      if [ "${ahead:-0}" -gt 0 ] || [ "${behind:-0}" -gt 0 ]; then
        printf '🟡 %s\n' "$display_path"
      else
        printf '🟢 %s\n' "$display_path"
      fi
    fi
  done

स्क्रिप्ट अभी भी चाहिए... chmod +x ~/path/to/script.sh इसे निष्पादन योग्य बनाएं और मूल्यवान टाइपिंग को बचाने के लिए एक उपनाम सेट कर सकते हैं: यहां आप अपने में जोड़ते हैं ~/.bashrc / ~/.zshrc / ~/.bash_profile प्रविष्टि alias gscan='bash /path/to/script.sh' इसके अलावा। तब से, एक सरल gscan वांछित रूट निर्देशिका में.

दूसरा रन काफी तेज होने का एक कारण यह है: पहले रन के दौरान, फ़ाइल सिस्टम को अभी भी सब कुछ स्कैन करना होता है; इसके बाद, मेटाडेटा और कई अन्य चीजें पहले से ही संसाधित होती हैं। .git-संरचनाएँ OS कर्नेल के पेज कैश में पहुँच गई हैं, और संदर्भ और कमिट ग्राफ़ पहले ही तैयार हो चुके हैं। अगला चरण... fetch अब यह ज़्यादातर छोटे डेल्टा ही प्रसारित करता है। कोई डैशबोर्ड नहीं, कोई ओवरहेड नहीं - सीधे टर्मिनल में एक त्वरित स्थिति स्नैपशॉट।

वापस