[Notes] Git Common Commands by Scenario
For common Git operations in everyday development. It’s organized into categories to help you get started or get started. 📦 Basic Commands order corresponds English -ity, -ism, -ization git init Initialize a Git repository (create a .git folder). git clone <url> Clone the remote repository to local. git status View the current working directory status (file modifications, staging, etc.). git add <file> Adds a file to the staging area. git commit -m "message" ...