lokesh-dev.hashnode.devUnderstanding Network DevicesIntroduction (High level View) : Internet is massive global system of interconnected devices. It is made up in layers. Lets see the Layers of Internet : Layer 1 : The Backbone (Tier 1 Network) : Internet is a massive global system .Companies like ...Jan 29·8 min read
lokesh-dev.hashnode.devInside Git : How it works and the role of .git folderLet’s see under the hood of Git : Look at this image : This is what inside .git folder looks like. Let us take an example : Imagine in our project we just have a single file named “Myfile.txt“. Now, when we run the command git init. It initialize an...Jan 28·4 min read
lokesh-dev.hashnode.devGit : Basics and Essential CommandsWhat is Git? Git is a Distributed Version Control System (DVCS). It keeps the track of Changes made in our project over the time. It allows multiple developers to work together (or collaborate) on a single project. It was created by Linus Torvalds...Jan 24·4 min read
lokesh-dev.hashnode.devWhy version control exists? The Pen-drive Problem.The Problem : First Problem : Before version control, we couldn’t track changes of our project over time. Even if we wanted to do so. Then we needed to copy paste previous content (or folder) then add changes to copied folder. and those folders look ...Jan 23·2 min read