Find Dirty Git Repositories
A tiny shell script that recursively scans a directory for Git repositories with uncommitted changes, nicknamed dirgit—a play on words combining "directory", "dirty", and "git".
Limited availability — accepting new projects starting October 2026.
Quick snippet to switch a Git remote URL from HTTPS to SSH for easier authentication with SSH keys.
git remote -v
git remote set-url origin git@github.com:USERNAME/REPOSITORY.git
Credit: docs.github.com/en/get-started/getting-started-with-git/managing-remote-repositories
A tiny shell script that recursively scans a directory for Git repositories with uncommitted changes, nicknamed dirgit—a play on words combining "directory", "dirty", and "git".
When working with feature branches, it’s easy for your local repository to accumulate branches that were already deleted on the remote. This snippet safely removes all local branches whose…
This simple FFmpeg command merges a video file video.mp4 and an audio file audio.mp4 without re-encoding. It copies both streams as they are, ensuring fast processing and no quality loss.