Jan 16 · 2 min read · After u initialize a folder with "git init" command, git creates a folder name ".git". As the folder name starts with "." it is hidden in most of the file explorers. It uses that folder to keep track of all the commits and changes you have made. Git ...
Join discussionAug 9, 2025 · 2 min read · Today, I learned how to undo changes with git reset and how to work with remote repositories in Git.These two concepts are essential for keeping your project history clean and collaborating with others. 🔹 What is git reset? git reset is a command t...
Join discussion
Jan 29, 2024 · 6 min read · Git reset is a command in the Git version control system used to reset the current state of the repository to a specified point. It’s a powerful tool that allows you to undo changes, unstage files, and move the HEAD pointer to a different commit or b...
Join discussion
Sep 11, 2022 · 7 min read · Terminologies Work Tree: Your working tree are the files that you are currently working on. Your local folder. Git Index/Staging Area: The git "index" is where you place files you want commit to the git repository. The index is also known as cache...
Join discussion