Jan 30 · 5 min read · Introduction: What is git? Git is a version control system. It helps developers to track changes in files. It tracks all the information like: who changes the code, what changes are done, when the changes are done. It also lets you revert any changes...
Join discussion
Jan 29 · 7 min read · Git commands are instructions that we give to git to perform action such as tracking changes, switching branch, creating commits etc (Rebase ko barem pani yesmia lekha). Following are some usefull git commands git init This initializes a new git repo...
Join discussion
Jan 28 · 3 min read · Introduction Git is a VCS(version control system) tool. It use keep track of changes in the source code and git allow to developer contribute in the project. It installation process is very easy after that installation It use in our project and manag...
Join discussionJan 11 · 3 min read · Understanding Git Internals Many beginners learn Git by memorizing commands like git add, git commit, and git push, without understanding what happens internally. This guide will demystify Git by explaining: The role of the .git folder How Git stor...
Join discussion
Dec 28, 2025 · 2 min read · Git is a tool that I use every day in my development work. It helps me save my code, track changes, and work without fear of losing anything. I am not using Git in a complex way. I use it in a simple and practical manner. Starting My Work with Git W...
Join discussion
Dec 13, 2025 · 3 min read · A. Why Advanced Git Matters in DevOps Clean commit history: A clean commit history is more than aesthetics, it directly impacts debugging, audits, and team efficiency. When production breaks at 2 AM, a clean Git history can be the difference between ...
Join discussion
Dec 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 7, 2025 · 41 min read · Welcome back! 👋 Day 32 of the 100 Days Cloud DevOps Challenge, and today we're mastering Git rebase - the history linearizer! This is how professionals keep clean, linear commit history without merge commits. Let's rebase like a pro! 🎯 🎯 The Missi...
Join discussion
Oct 27, 2025 · 5 min read · In this Guide, we will look at Git Fetch, Merge and Pull in Depth. By the end of this guide, you will understand Git Stages what is Git Fetch what is Git Merge what is Git Rebase what is Git Pull Difference between Git Fetch and Git Pull Git ...
Join discussion