Git Commands I Use (WIP 🚧)
October 26, 2025
Here are some Git commands that I frequently use in my projects:
- Remove git tracking
git rm -r --cached .astro/
// rm = remove from git
// -r = recursive
// --cached = only remove from git index, keep local files
// .astro/ = directory to remove from git tracking