Git Initializations and configurations

here we will take a look for some git keywords plus creation for a new git respiratory 

also we will learn some commands that we will use to set some of configurations that we will need it through this tutorial.

 

first step is right click then chose

Git Bash Here

this is the first command that we will use in Git. 

git init 

now I can tolled you that you have a git workspace in you machine this file is  a hidden file that to protect it from delete so never and never delete it because only this file in you project folder that hold all history as we described before 

this .git file contain a lot of files that is may be not important to you to know more about these folders but you may be need to navigate through this files is some situations I will explain some of these situations later.

so through this tutorial we will touch some of these files to know how git work.

now before will create a new project and take snapshoot from it 

we need to set some configurations 

we can learn how  to set username and email through CMD and the another configurations we can make them through Git Extension

first of all, we can describe the git extension command structure. 

executer       command          options          others/values

executer: we type here "git" that will interpreter your command. 

command: that represent what need from git to do. 

options: each command has a lot of options supported for each command. 

 others/values: this is if the command need some values to assign to it. 

git config --global user.name "you name"

git config --global user.email "you email"

git config --global core.editor "you editor that you need to open your files by git "