If you are going to configure GIT the type command –
git init
And then you check your git version –
git remote -v
If you want to remove your existing git configuration and want to setup new GIT then for below steps –
git remote rm origin
git remote add origin git-remote-url
git remote set-url origin git-remote-url
git config user.name “your namee”
git config user.email “email”
git config –global user.password “your password”
After that you want to check your GIT configuration details the type command below-
git config –list
If want clone your project from git repository then type below command by using your repository url –
git clone url(your git repository url)