Ankita Lunawatcloudhub2295.hashnode.dev·Sep 2, 2024Introduction to GitGit is a distributed version control system that tracks changes in source code, allowing multiple developers to collaborate.. Key Features of Git Version Control: Git tracks changes to files over time, allowing you to revert to previous versions if ...1 likeGit
Raghuu'raghuu87.hashnode.dev·May 14, 2024My D's P's L's Js _ Day12 _ Git & GitHub {9}; CS50'sT {6}; Other Developments {12}Day12 \\ Lets Get Started \\ Git and GitHub {9} _ Working with the staging area : for chaking what our staging area will look like : git status so, staging area now is empty and no commits etc. we have one untracked file (in red test.txt), which...38 readsGit Staging Area
Kusuma Vkusumav.hashnode.dev·Dec 9, 2023Git & Github - 2First steps in Git create a folder -mkdir sample git init -to create a git local repository untracked files (red color)tacked files (green color)local repo file.txt (file created)in order to know to where it is we have to use git statusgit ad...Git
Erdal TAŞKESENwww.erdaltaskesen.com·Dec 20, 2018How to partially stage filesGIT has a wonderful idea that is known as the staging area. The stage area is the place where you prepare the files that are going to be on your next commit. Sometimes you want to add only one specific part of some files. You can use one of the follo...48 readsGit