Author: web-admin

0

Chapter 46: Git Signing

Git Signing (also called signed commits, GPG-signed commits, or commit signing) This is the part where Git stops being just a version control system and starts being a cryptographically verifiable chain of authorship —...

0

Chapter 47: Git Cherry-pick & Patch

Git cherry-pick and its close cousin git apply / git am (working with patches) These two features are not everyday commands like commit / push / pull / rebase — they are precision instruments....

0

Chapter 48: Git Merge Conflicts

Git Merge Conflicts (the moment almost every developer hates the first time they see it, but eventually learns to handle calmly) This is not a command — it’s a situation Git puts you in...

0

Chapter 49: Git CI/CD

Git + CI/CD (Continuous Integration / Continuous Delivery / Continuous Deployment — the automation layer that sits on top of Git) This is not a Git command. Git itself has no built-in CI/CD. CI/CD...

0

Chapter 50: Git Hooks

Git Hooks These are small scripts that Git automatically runs at very specific moments in your workflow. Think of them as Git’s personal assistants that whisper in your ear (or shout at you) right...

0

Chapter 51: Git Submodules

Git Submodules This is the part where Git stops feeling like a simple version control system and starts feeling like you’re managing multiple separate Git repositories inside one parent repository. Many people try submodules...

0

Chapter 52: Git Advanced Remote

Git Advanced Remote (everything you need to know about remotes once you leave the beginner “origin + main” comfort zone) Most people learn only this about remotes: Bash

And they think that’s the...

0

Chapter 53: Git Exercises

Git Exercises You already know a lot of theory, commands, concepts, workflows, safety nets, advanced tricks… But knowing is not the same as being able to do it fluently under pressure. Git is a...

0

Chapter 54: Git Quiz

Git Quiz Time This is not a scary exam. This is your personal victory lap — a chance to see how much muscle memory you’ve built and where you still need 2–3 more practice...

0

Chapter 55: Git Syllabus

Git Syllabus – Full Roadmap (Zero → Advanced Professional) Phase 0 – Setup & First Mindset (1–2 hours) Goal: No fear, correct tools, right expectations Install Git (git-scm.com) + choose good defaults (editor, line...