skip to content
> Techie Tanmay _

Git Workflow

Terminal window
# Check status
git status
# Stage changes
git add .
git status
# Commit changes
git commit -m "Add feature"
git status
# Dry-run before pushing
git push --dry-run
# Push branch
git push origin main