git commit
//now commit the code
git commit -m "anyMessageYouWantToWrite"
git commit
//now commit the code
git commit -m "anyMessageYouWantToWrite"
git commands
// displays the staging area
git status
// create a new repository
git init
// add stages
git add --a or
git add .
// commit
git commit -m "your message"
// know your commit
git log
// skipping staging area Note: Untrack file will not skip
git command -a -m "your message"
// Config user name and email
git config --global user.name "UserName"
git config --global user.email "emailId"
// check user name and email
git config user.name
git config user.email
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us