git config –list
git config –global init.defaultBranch main
git config –global user.email “anwarcs36@yahoo.com”
git config –global user.name “Anwar Hossain”
git config –list
git init
git add .
git commit -m “first commit”
git remote add origin https://github.com/softworksbd/DyeManagerV2.git
git push -u origin master
git clone –branch branchname
or
git clone -b branchname
git clone -b development https://github.com/softworksbd/DyeManagerV2.git
git log
git log –oneline
Leave a Reply