Useful GIT Commands
1. Repository Setup Initialize new repo git init Clone existing repo git clone https://github.com/username/repo.git Check remote repository git remote -v Add remote git remote add origin https://github.com/username/repo.git 2. Daily Workflow Commands Check status git status Pull latest changes git pull origin main Stage all files git add . Stage specific file git add filename.js Commit […]