Skip to content

Instantly share code, notes, and snippets.

@cblunt
cblunt / git_basics.md
Last active June 10, 2025 14:24
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 ...