Core Git Commands
🧱 1. Repository Setup Purpose: Start tracking a project with Git. CommandDescriptionExamplegit initInitialize a new Git repository in your current folder.git initgit clone <repo_url>Copy an existing remote repository to your local machine.git clone https://github.com/user/project.git Tip:After cloning, you already have a .git folder — no need to run git init again. 🧩 2. Checking Status…
