Git Basics

Git Commands

a handy cheatsheet of my most used and looked up git commands

Finding Large Files in repos

git rev-list --all --objects | awk '{print $1}' | git cat-file --batch-check | sort -k3n | …

    Finding Submodules

    find repos/ -not \( -path repos/external -prune \) -iname .gitmodules -type f
    
    git submodule update …