Skip to content

Instantly share code, notes, and snippets.

@mcsee
Last active January 11, 2026 23:53
Show Gist options
  • Select an option

  • Save mcsee/c24d054bacdcbb523b50e909ce906c01 to your computer and use it in GitHub Desktop.

Select an option

Save mcsee/c24d054bacdcbb523b50e909ce906c01 to your computer and use it in GitHub Desktop.
This gist belongs to Clean Code Cookbook http://cleancodecookbook.com By Maximiliano Contieri http://maximilianocontieri.com
git status # Check for uncommitted changes
git add . # Stage all changes
git commit -m "msg" # Commit with message
git diff # See AI's changes
git reset --hard HEAD # Revert AI changes
git log --oneline # View commit history
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment