cohortblogs.hashnode.devInside Git: How It Works and the Role of the .git FolderHow Git Works Internally When we run “git init” command it initialize git tracking in our project basically it create a .git folder in root of that project folder. This .git folder is not visible in our code editor but we can see this file by using ...Jan 31·3 min read
cohortblogs.hashnode.devDNS Record Types ExplainedWhat is DNS Domain name system is a hierarchical and distributed naming system that convert human readable domain name into IP Address. It enable user to users to access website easily. Browser need IP Address to connect and load website this DNS se...Jan 29·3 min read
cohortblogs.hashnode.devTCP vs UDP: When to Use What, and How TCP Relates to HTTPIntroduction :why internet need rules for send data In Internet there is billions of device trying to communicate with each other it is very difficult to make communicate with destination devices without rules. To communicate with other devices with...Jan 26·3 min read
cohortblogs.hashnode.devWhy Version Control Exists: The Pendrive Problem1.Why Version Control Exists Version control system is a tool to track the changes in git repository. It was very difficult to track changes and collaborate on same repository. So to Track the changes and and collaborate with other teammate to work p...Jan 17·2 min read
cohortblogs.hashnode.devGit for Beginners: Basics and Essential CommandsWhat is Git Git is a version control system which track your all changes made in code. It is very essential and helpful tool to track and show changes in you folder. Why Git is Used Git is used to track all you changes in folder especially code .W...Jan 15·2 min read