vinod chandravinod-sh.hashnode.dev·Jul 15, 2024Day 13 : Advance Git & GitHub for DevOps EngineersGit Branching Branches are an essential feature in Git, allowing you to work on different project parts without affecting the main codebase. Each Git repository starts with a default branch (usually called main or master). You can create new branches...GitHub
Yashraj Singh Sisodiyatheyashsisodiya.hashnode.dev·Feb 7, 2024Day 12: Git Cheat SheetSure! Here's a Git cheat sheet covering each topic with 5-6 commands: Setup and Init: git config --globaluser.name"Your Name": Set your name globally. git config --globaluser.email"youremail@example.com": Set your email globally. git init: Initia...day 13