Skip to content

Instantly share code, notes, and snippets.

View DevMhrn's full-sized avatar
🏛️
Learning & Implementing . . .

DebashisMaharana DevMhrn

🏛️
Learning & Implementing . . .
View GitHub Profile
@DevMhrn
DevMhrn / setup.sh
Last active April 22, 2026 15:55
Dev workspace bootstrap: git + gh + SSH auto-setup
#!/bin/bash
set -euo pipefail
# --- Colors ---
# Using $'...' syntax which properly handles escape sequences in all shells.
if [[ -t 1 ]]; then
RED=$'\033[0;31m'
GREEN=$'\033[0;32m'
YELLOW=$'\033[0;33m'
BLUE=$'\033[0;34m'