Jan 29 · 7 min read · Git commands are instructions that we give to git to perform action such as tracking changes, switching branch, creating commits etc (Rebase ko barem pani yesmia lekha). Following are some usefull git commands git init This initializes a new git repo...
Join discussion
Sep 15, 2025 · 4 min read · What is Version Control At its core, version control is a system that records changes to files over time. It allows multiple people to collaborate on projects, track who made what change, revert back to previous states if needed, and maintain a struc...
Join discussion
Aug 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
Nov 9, 2023 · 4 min read · What is Git and why is it important? Git is a version control system that helps you manage and track changes in your code. It's important because it allows collaboration, keeps a history of changes, and helps prevent chaos in coding projects. What...
Join discussionMay 6, 2022 · 3 min read · Git is the most important software of a developers life. We use it to track changes in our code, check differences, log what and when and by whom it is changed and many more. We upload our code along with git history in remote repositories. GitHub, G...
Join discussion