HLHatim Lohaingitworkflowjourney.hashnode.dev·Jun 10 · 2 min readLesson 2 — Git & GitHub JourneyUnderstanding File Changes in Git Today you’ll learn: git diff staging vs unstaging restoring files .gitignore These are daily-use Git skills. 1. Modify Existing File Change your file: touch not00
HLHatim Lohaingitworkflowjourney.hashnode.dev·Jun 10 · 2 min readLesson 1 — Git & GitHub JourneyLesson 1 — Git & GitHub Journey What is Git? Git is a version control system. It tracks: file changes code history who changed what rollback versions team collaboration Think like: Save Game Sy00
SBSwastisunder Badatyainswasti.hashnode.dev·May 25 · 7 min readGit For Beginners: The Time Machine Every Developer NeedsIntroduction When I first heard about Git honestly I thought this is just another developer tool which everybody pretend to understand. People were typing commands very fast like: git add . git commit00
ISInayatullah Shinwariinius.hashnode.dev·May 19 · 2 min readWhy Git Feels Hard Until You Understand What Happens Behind the ScenesI think almost every developer has had that moment with Git. Everything feels fine at first. You learn a few commands, push some code, and move on. Then one day, something goes wrong. You accidentally00
YPYukta Pramod Thakurinyuktathakur16.hashnode.dev·Apr 16 · 4 min readGit and GitHub Command Cheat SheetBasic Commands Command Description git init Initializes a new Git repository. git clone [url] Clones a repository from a remote URL. git status Shows the current state of the working directo00
CZChloe Zhouinchloezhou.dev·Apr 4 · 7 min readMerging vs. Rebasing: Git’s Showdown of Independence and AdaptabilityOriginally written in 2024. Content may vary slightly across newer versions. Introduction In the world of Git, two techniques often take center stage: Merging and Rebasing. While both aim to combine 00
ARAbhishek Rajbanshiinavecek.hashnode.dev·Mar 30 · 4 min readUnderstanding Git & Essential Commands for New DevelopersWhat is Git? Git is an open-source version control system tool used to keep track of your source code history changes in your main timeline. It keeps a record of every change made in your code file by00
KVKarthik Vasudevinkarthik-web-dev.hashnode.dev·Mar 17 · 4 min readGit for Beginners: Basics and Essential CommandsBasics and Essential Commands If you’ve started coding or working on projects, you’ve probably heard of Git. It might seem confusing at first, but once you understand the basics, it becomes one of the00
KNKanchan Nathinkanchannath.hashnode.dev·Mar 15 · 5 min readGit & GitHub Commands for Contributing to Open Source1. Fork the Repository Done via GitHub UI (click Fork button), but to work with it locally: git clone https://github.com/YOUR-USERNAME/REPO-NAME.git Explanation: Downloads your forked copy of the rep00
APAmaresh Patiinblogs.devvloper.in·Mar 9 · 4 min readGit Adventures --- Part 1: Five Developers, One Repo, and the "It Works on My Machine" EraEvery software project begins the same way. Someone says, "Let's build something amazing." Ten minutes later, someone asks: "Wait... who created the Git repo?" This is the story of a five-person dev10