GIT most used commands
git init
git status
git add .
git commit -m "My comments"
git remote add origin http://url/projectName.git
git remote rm origin
git push -u origin master
git config --global user.name "UserName"
git init
git status
git add .
git commit -m "My comments"
git remote add origin http://url/projectName.git
git remote rm origin
git push -u origin master
git config --global user.name "UserName"