Jan 16 · 2 min read · After u initialize a folder with "git init" command, git creates a folder name ".git". As the folder name starts with "." it is hidden in most of the file explorers. It uses that folder to keep track of all the commits and changes you have made. Git ...
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
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
Sep 16, 2025 · 3 min read · Branches: Keeping the Main Copy Clean The idea of branches is straightforward: The main branch (in most repos now called main) is the stable copy of the project. Developers create separate branches to work on new features or sprint-specific changes w...
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
Aug 28, 2024 · 3 min read · Git Branching Branches are a core concept in Git that allow you to isolate development work without affecting other parts of your repository. Each repository has one default branch, and can have multiple other branches. You can merge a branch into an...
Join discussion
Aug 2, 2024 · 5 min read · What is Git? Git is a distributed version control system which is used to tracking changes in the source code, enabling multiple developers to work together on non-linear development. It offers efficient branching and merging, enabling seamless colla...
Join discussion
Feb 7, 2024 · 1 min read · Navigating Git Branches 🌲🚀 Understanding Branches 🤔🌿 Branches in Git are like different storylines in your coding adventure. Each branch lets you develop features or fix bugs without disturbing the main storyline. Think of it as a playground for...
SShashidhar commented
Jan 30, 2024 · 4 min read · In Git, git revert is a command used to create a new commit that undoes the changes made by a specific commit or commits, effectively reverting the repository's state back to how it was before those changes were introduced. Unlike git reset, which al...
Join discussion