Skip to content

Instantly share code, notes, and snippets.

@cblunt
cblunt / git_basics.md
Last active September 24, 2025 13:58
A simple git cheatsheet for reference.

Quick Summary

cd my_project

git init .
git add . # add everything
git commit -m 'Initial commit'

... make some changes ...