Videos
Tips, tutorials, and demos on git, AI, open source, and developer workflows.
git mv: rename files without the delete-and-add confusion
Jul 9, 2026
Use git mv to rename files so git tracks the change instead of showing a delete and a new file.
git rebase: catch up with main on your branch
Jul 7, 2026
Use git rebase to replay your commits on top of the latest main and stay current on busy projects.
git switch -c: create a branch and switch in one command
Jul 2, 2026
Use git switch -c to create a new branch and switch to it with a single command.
git merge conflicts: what to do when git yells at you
Jun 30, 2026
Learn what a git merge conflict means and how to resolve it without panicking.
the .gitkeep trick: how to make git track empty folders
Jun 25, 2026
Git doesn't track empty folders. Learn the .gitkeep convention to keep empty directories in your repo.
git stash pop vs apply: which one should you use?
Jun 23, 2026
Learn the difference between git stash pop and git stash apply, and when to use each one.
agenticstack.sh: compare tools for building AI agents
Jun 19, 2026
Compare auth, email, hosting, CMS, and other tools for building AI agents with agenticstack.sh.
git stash: save your work without committing
Jun 18, 2026
Save uncommitted changes with git stash so you can switch branches and come back later.