-
How does git stores data
Git developed by Linus Torvalds is the most widely used source control system. It empowers developers by managing different versions of source files and it provides lot of features to aid in development. Stash may be my favorite feature of all. Below summarizes how git stores data. The .git hidden folder Once we initialize git…
-
What is DNS and how name resolution works
DNS stands for Domain Name System and essentially it is a phone book or contacts app for our computer. Understanding how name resolution happens at least at a high level is important to troubleshoot issues. It also helps in building larger systems which interacts with each other. What is DNS and Why we need? Humans…