git --version
git config --global user.name "Dibaloke Chanda"
git config --global user.email "dibaloke66@gmail.com"
git config --list
git help onfig
git config --help
git init
git status
git log
git add -A
git add m.py hello.py pubspec.yml .gitignore
git reset
git reset m.py hello.py pubspec.yml .gitignore
git commit -m "Intial Commit"
git clone https://github.com/tiagojencmartins/unicornspeeddial.git .
git remote -v
git branch -a
git diff
git remote add origin https://github.com/dibaloke/Measurment-lab-Project.git
git pull origin master
git push -u origin master