Last active
January 11, 2026 23:53
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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