Git Commands & GitHub Workflow
Full Stack Development
2/6/2026
Git & GitHub Step by Step Guide
Git Basics
Git ek version control system hai jo code changes track karta hai aur collaborative development easy banata hai.
git init
git add .
git commit -m "Initial commit"
GitHub Workflow
GitHub ek remote repository provide karta hai jahan projects store aur collaborate kiye ja sakte hain.
git remote add origin https://github.com/username/repo.git
git push -u origin main
Branching & Merge
Branching se alag feature develop kiya ja sakta hai aur merge se code main integrate hota hai.
git branch feature
git checkout feature
git merge feature
Push Projects
Code changes ko remote repository me push karke share kar sakte hain.
git push origin main