`git init for initialization
git status
git commit -m "first commit"
git add . or git add file name
git push -u origin master
for changing the name
git config --global user.name "name"
git config --global user.email "email@gmail.com"
for checking the email or name
git config user.email
git config user.name`
Top comments (0)