Jan 5 · 2 min read · When working on a feature or fixing a bug, you may need to quickly switch branches without committing unfinished work. That’s where Git Stash comes in.But after stashing, a common question is: How do I see what changes are inside a stash? This arti...
Join discussion
Dec 20, 2025 · 7 min read · Once I was writing some code, very happily, because my fingers just won’t stop. After writing for some time, a sudden thought came in my mind that blew me away! 😱 I WAS WRITING CODE IN A WRONG BRANCH!!! I quickly thought of solutions, asked two of m...
Join discussionDec 12, 2025 · 4 min read · A. Clone, Fork & Upstream Workflow Problem: I cloned a repo but need to contribute to an open-source project, how do I sync with the original repo? Action: Use fork → clone → add upstream → sync regularly. Commands:# Clone your forkgit clone https://...
Join discussion
Dec 6, 2025 · 36 min read · Welcome back! 👋 Day 31 of the 100 Days Cloud DevOps Challenge, and today we're mastering Git stash - the temporary storage for your work! This is how professionals switch contexts without losing uncommitted changes. Let's stash like a pro! 🎯 🎯 The...
Join discussion
Oct 4, 2025 · 5 min read · Have you ever been in the middle of a code change and suddenly got pulled into an urgent bug fix?You can’t commit your work yet, but you also can’t lose it. So what do you do? 🤔 This is where one of Git’s most underrated yet powerful features comes ...
Join discussion
Sep 29, 2025 · 3 min read · 🔹 Introduction In —> Part-1 , I discussed authentication with SSH, and in —> Part-2 , I covered essential Git commands like add, commit, log, push, and the basics of branching. Now, in Part 3, I’ll dive deeper into real-world scenarios—undoing mista...
Join discussion
Jul 24, 2025 · 5 min read · Problem The application I’m currently working on requires some local config changes in order to run. The values in source control aren’t suitable for local running, but there is no infrastructure configured for injecting local secrets from outside so...
Join discussion
Apr 11, 2025 · 5 min read · 🧠 What is Git? Git is an open-source, distributed version control system that tracks changes in your project over time by taking snapshots on every commit. It lets multiple developers collaborate effectively, work on different features, and revisit ...
Join discussion