Jan 17 · 4 min read · What is Git ? Git is like a time-machine for your software project that allows you to travel to any instant of your project timeline, but only till the current state of your project.In technical terms, Git is a Version Control System(VCS) , that trac...
Join discussionJan 8 · 10 min read · We know that Git is a VCS (version control system) used to track the history and changes of our code. Now it is time to deep dive into Git to understand how it works internally. We will also understand what the .git folder is and why it exists. We wi...
Join discussion
Jan 3 · 3 min read · 1. The "Final_v2_REAL_Final" Nightmare The "Final_v2_REAL_Final" Nightmare Before the advent of version control systems (VCS), "versioning" was a manual process that was highly susceptible to human errors. If you were in the middle of a project, the...
Join discussion
Oct 22, 2025 · 4 min read · So you have written some code on your computer and want to share it on GitHub. That is one of the best ways to back up your work and showcase your projects. In this tutorial, you will learn step by step how to push your local project to GitHub. Even ...
Join discussion
May 27, 2025 · 2 min read · If you're new to Git or need a quick refresher, this guide walks you through the most commonly used Git commands to manage your code efficiently. Whether you're working solo or on a team, Git is the backbone of modern software collaboration. 🔧 Sett...
Join discussion
May 25, 2025 · 5 min read · Hey fellow developers! 👋 Stepping into the world of version control can feel like entering a high-security vault for your precious code. Git — the widely adopted distributed version control system — is that vault, and your Linux terminal? That’s you...
Join discussion
Apr 10, 2025 · 9 min read · Setup Initialize Repository: mkdir git-poem-exercise cd git-poem-exercise git init echo -e "The sun dips low in twilight's glow,\nShadows stretch across the snow.\nA lone wolf howls a mournful tune,\nBeneath the watchful eye of the moon." > poem.tx...
Join discussion
Apr 4, 2025 · 5 min read · If you've ever wondered how developers collaborate on projects or how open-source software works, GitHub is the answer! GitHub is a platform where developers from around the world work together, contribute to projects, fix bugs, and build amazing sof...
Join discussion
Jan 18, 2025 · 4 min read · Welcome! Lets play with Git.This guide covers essential Git operations frequently used by working professionals, by making practical scenarios and step-by-step instructions. Prerequisites Install Git: Download Git A GitHub account (optional but rec...
Join discussion