Answers for "git commt"

0

git commit

//now commit the code
git commit -m "anyMessageYouWantToWrite"
Posted by: Guest on December-29-2020
0

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
Posted by: Guest on December-30-2020

Browse Popular Code Answers by Language