Posts

Showing posts with the label git

GIT

< JS C C++ Python >< coding Robotics CNC > < Robotics CNC Links > < CNC >< CNC tutorial > < 3d printing >< Azure MongoDB Spark > < AI Pytorch > < Ship building >< GIT >   source: jwiegley.github.io/git-from-the-bottom-up/  1.Definition of terms Repository it is a collection of commits it defines HEAD it contains a set of branches and tags Index changes are first registered in the index it is a way of confirming changes before doing a commit it is also called the staging area working trees it is any directory on your filesystem which has a repository associated with it typically indicated by the presence of a sub-directory within-it, named: git it includes all the files and subdirectories in that directory Commit it is a snapshot of your working tree at some point of time it is an archive of what the project`s tree looked like at a past date Whether on your machine or someone else`s  the state of HEAD at the tim y...