Git Notes
What is Git? Git is a Distributed Version Control System that mainly used for Source code management by developers. Git basically divides your code into three part. Working Area Staging Area Head or commit Working Area is your state of code before running the git add command. The files in here also known as “untracked files”. To add the files into git you do git add and they moved to staging area. ...