git-automation
Installation
SKILL.md
Overview
Comprehensive Git automation skill that provides intelligent repository management, advanced branching strategies, automated commit optimization, and sophisticated release workflows with continuous learning from repository patterns.
Git Repository Intelligence
Repository Analysis
# Analyze repository structure and patterns
analyze_repository() {
local repo_path=$1
# Repository metrics
local total_commits=$(git rev-list --count HEAD)
local total_branches=$(git branch -a | wc -l)
local total_tags=$(git tag -l | wc -l)
local repo_size=$(du -sh .git 2>/dev/null | cut -f1)