git init # Initialize a new local Git directory tracking node
git add . # Track all files and modifications in the current directory
git commit -m "feat: core module" # Take a permanent snapshot snapshot of changes in history
2. Synchronizing Files with GitHub Remote Targets
git remote add origin https://github.com # Bind local code structure to GitHub remote
git branch -M main # Enforce primary master naming branch parameters
git push -u origin main # Safe export upload stream to live GitHub Pages channel