RRravi rodge patilinravirodge.hashnode.devĀ·Jan 30 Ā· 1 min readWhy Version Control Exists: The Pendrive ProblemBefore Git and modern version control systems, people shared and backed up code using pendrives, folders, and file copies. This created a big mess ā known informally as the Pendrive Problem ā Problems Without Version Control No Version History You ca...00
RRravi rodge patilinravirodge.hashnode.devĀ·Jan 30 Ā· 3 min readInside Git: How It Works and the Role of the .git FolderWhen you run git init in a project, Git creates a hidden folder named .git.This folder is the heart of your repository ā it stores everything Git needs to track history, versions, and branches. Without .git, your project is just normal files. With .g...00
RRravi rodge patilinravirodge.hashnode.devĀ·Jan 30 Ā· 2 min readHow DNS Resolution Works?DNS resolution is the process of converting a domain name (like www.google.com) into an IP address (like 142.250.183.36) so your computer can connect to the correct server on the internet. Think of DNS like the phonebook of the internet ā you know th...00
RRravi rodge patilinravirodge.hashnode.devĀ·Jan 24 Ā· 1 min readDNS Record Typesš What is DNS (Domain Name System)? DNS (Domain Name System) is like the phonebook of the Internet. It translates easy-to-remember domain names (like www.google.com) into IP addresses (like 142.250.190.14) that computers use to identify each other o...00
RRravi rodge patilinravirodge.hashnode.devĀ·Jan 23 Ā· 2 min readGit for Beginners(Fundamentals)What is git : Git is a distributed version control system (DVCS) used to track changes in source code during software development. It helps developers manage code efficiently, work together as a team, and maintain a complete history of modifications....00