MSMayank Sainiinmayanksaraswal2.hashnode.dev·Jan 17 · 2 min readWhy Version Control ExistsThe Pendrive Story Introduction Before Git and version control systems existed, software development was very difficult.Developers did not have tools to manage code changes properly. Life Before Version Control Long ago, developers saved code like no...00
MSMayank Sainiinmayanksaraswal1.hashnode.dev·Jan 17 · 3 min readHow Git Works InternallyMost beginners use Git by typing commands like git add and git commit.But many people do not know what Git actually does inside What is the .git Folder? When you run this command: git init Git creates a hidden folder called: .git The .git folder is...00
MSMayank Sainiinmayanksaraswal.hashnode.dev·Jan 17 · 2 min readWhat is GitGit is a distributed version control system. Distributed means every developer has a full copy of the project history included on their computer. Version control means Git records every change you make so you can review or restore old versions late...00