What does git init do?Creates a new, empty Git repository in the current directoryInstalls Git on your systemClones a repository from GitHubWhich area holds changes that will be included in the next commit?The working directoryThe staging area (index)HEADHow do you stage a file named readme.txt?git stage readme.txtgit add readme.txtgit commit readme.txtWhich command creates a commit with a message?git add -m “Message”git commit -m “Message”git log -m “Message”What does HEAD usually refer to?Your remote repositoryAll previous commitsThe current commit your branch points toSubmit Print Lesson